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=no,resizable=no,top=200,left=200");
		 output="<HTML><BODY BGCOLOR='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><CENTER>"
		 if (nBorder==0) {
		 	output+="<TABLE BORDER='0'><TR><TD>"
		 }
		 output+="<IMG SRC='"+cPicture+"'>"
		 if (nBorder==0){
		 	output+="</TD></TR></TABLE>"
		 }
		 output+="</CENTER></BODY></HTML>"
		 newWind.document.write(output);
		 newWind.document.close();
		 newWind.focus();
}

function openwindowscroll(cPicture,nWidth,nHeight,cMessage,nBorder){
		 var output;
		if (lOpened){
		   //newWind.close();
		}
		lOpened=true;
		 newWind=window.open("","winnam","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=yes,resizable=no,top=200,left=200");
		 output="<HTML><BODY BGCOLOR='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><CENTER>"
		 if (nBorder==0) {
		 	output+="<TABLE BORDER='0'><TR><TD>"
		 }
		 output+="<IMG SRC='"+cPicture+"'>"
		 if (nBorder==0){
		 	output+="</TD></TR></TABLE>"
		 }
		 output+="</CENTER></BODY></HTML>"
		 newWind.document.write(output);
		 newWind.document.close();
		 newWind.focus();
}