<!--
var newWind;
var lOpened=false;
function openwindow(cPicture,nWidth,nHeight,cMessage,nBorder){
	 var output;
	if (lOpened){
	   //newWind.close();
	}
	 lOpened=true;
	 nHeight=nHeight+135;
	 nWidth=nWidth+100;
		   newWind=window.open("","winnam","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=yes,resizable=yes,top=5,left=5");
	 output="<HTML><BODY BGCOLOR='white'><CENTER>"
	 output+="<FONT FACE='Comic Sans MS' SIZE='+2' COLOR='white'><B>"+cMessage+"</B></FONT><BR>"
	 if (nBorder==1) {
	 	output+="<TABLE BORDER='0'><TR><TD>"
		 }
	 output+="<IMG SRC='"+cPicture+"'>"
	 if (nBorder==1){
	 	output+="</TD></TR></TABLE>"
		 }

	 output+="<FORM><TABLE BORDER='0'><TR><TD><INPUT TYPE='button' VALUE='Close' onClick='self.close()'>"
	 output+="</TD></TR></TABLE></FORM></CENTER></BODY></HTML>"
	 newWind.document.write(output);
	 newWind.document.close();
	 newWind.focus();
		 
}
//-->
