 function imageopen(pagetitle, imagename)
{
 OpenWindow=open("","imagepage","width=1024,height=710,menubar=0,scrollbars=0,status=0,resize=0,toolbar=0");
 OpenWindow.moveTo(0,0);
 OpenWindow.resizeTo(screen.availWidth,screen.availHeight);
 OpenWindow.document.open();
 OpenWindow.document.write("<HTML><head><TITLE>"+pagetitle+"</TITLE>");						   
 OpenWindow.document.write("</head><BODY BGCOLOR=\'#003264\' topmargin=\'0\' leftmargin=\'0\'>");
 OpenWindow.document.write("<CENTER><IMG SRC='"+imagename+"' ALT='please be patient while image loads'><BR><BR>");
 OpenWindow.document.write("<A HREF=\'javascript:history.back();\' onClick=\'self.close()\'><FONT COLOR=\'WHITE\' SIZE=1>Close This Window</FONT></A></BODY></HTML>");
 OpenWindow.document.close();
}

function popWindow(url, name, width, height, scrollbars)
{
	var opts = "toolbar=yes,status=no,location=yes,menubar=no,scrollbars=no,resizable=yes";
	opts += ",height=" + height + ",width=" + width + ",scrollbars=" + scrollbars;
	window.open(url, name, opts);
}