// JavaScript Document

	<!--- Hide script from old browsers
	function OpenNewWindow(WindowPicture,WindowParameters)
	{
	NewWindow=window.open("","NewOne", WindowParameters);
	NewWindow.document.write ("<HTML><HEAD><TITLE>");
	NewWindow.document.write ("Enlarged picture");
	NewWindow.document.write ("</TITLE></HEAD>");
	NewWindow.document.write ("<BODY><br>");
	NewWindow.document.write ("<P ALIGN=CENTER>");
	NewWindow.document.write ("<font face='Verdana, Arial, Helvetica, sans-serif' size='1'>");
	NewWindow.document.write ("Click the image to close this window");
	NewWindow.document.write ("</font></P>");
	NewWindow.document.write ("<P ALIGN=CENTER>");
	NewWindow.document.write ("<A HREF='JavaScript:this.close()'><IMG border=0 SRC=");
	NewWindow.document.write (WindowPicture);
	NewWindow.document.write ("></A>");
	NewWindow.document.write ("</P>");
	NewWindow.document.write ("</BODY></HTML>");
	NewWindow.document.close();
	return false;
	}
	// end hiding from old browsers -->
