<!--
	newWindow = new Object;
	newWindow.closed = true;
	
	function newWindowOpener(image)
	{
	      if (!newWindow.closed) {  
	        newWindow.close();
	      }
	      newWindow = window.open("","","height=360,width=450");
	      newWindow.document.write("<HTML><HEAD><TITLE>");
	      newWindow.document.write("Image_Preview");
	      newWindow.document.write("</TITLE>"); 
	      newWindow.document.writeln("</HEAD><BODY BGCOLOR=\"WHITE\" leftMargin=\"0\" topMargin=\"0\" marginheight=\"0\" marginwidth=\"0\">");
	      newWindow.document.writeln("<IMG SRC=\""+image+"\" ALT=\"Image Preview\">");
	      newWindow.document.writeln("<CENTER><FORM><INPUT TYPE=\"BUTTON\" VALUE=\"Close\" onClick=\"self.close()\">");
	      newWindow.document.writeln("</FORM></CENTER></BODY></HTML>");
	      newWindow.document.close();
	      newWindow.focus();
	  }
//-->

