		
		<!-- Begin
		
		function Pop(URL, PANEWIDTH, PANEHEIGHT) {
		windowprops = "left=50,top=50 ,width=" + (PANEWIDTH+30) + ",height=" + (PANEHEIGHT+30);
		
		text = "<html><head><title>Image Preview Window</title></head><body background='images/bkgd.gif' onBlur='self.focus()' bgcolor='#cccccc'";
		
		
		text += "><center><img src='" + URL + "'>";
		
		text +="<br><A HREF='javascript:()' onClick='window.close()'><font face='verdana,arial,helvetica' size='1' color='ffcc33'>Close Window</a></font>";
		
		text += "</center></body></html>";
		
		
		
		preview = window.open("", "preview", windowprops);
		preview.document.open();
		preview.document.write(text);
		preview.document.close();
		}
		//  End -->


