<!--
var newWind;
var lOpened=false;
function openwindow(cPicture,nWidth,nHeight,cMessage,nBorder){
		 var output;
		if (lOpened){
		   //newWind.close();
		}
		lOpened=true;
		 newWind=window.open("","winnam","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=yes,resizable=yes,top=5,left=5");
		 output="<HTML><BODY BGCOLOR='#EDD4B3'><CENTER>"
 		 output+="<FONT FACE='Arial' SIZE='+1' COLOR='brown'><B>"+cMessage+"</B></FONT><BR>"
		 if (nBorder==1) {
		 	output+="<TABLE BORDER='8'><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();
		 
}
//-->
