function WindowOpen(PageName,imgwidth,imgheight){
	if(imgwidth > screen.width*0.8) imgwidth = screen.width*0.8;
	if(imgheight > screen.height*0.8) imgheight = screen.height*0.8;
	imgwidth = imgwidth + 50;
	imgheight = imgheight + 50;
	NewWindow = window.open(PageName,'image','scrollbars=1,resizable=0,width=' + imgwidth + ',height=' + imgheight + '\'');
}
