	function OpenNewWindow(cPicture,nWidth,nHeight,cMessage,nBorder)
	{ NewWindow=window.open("","NewOne","height="+nHeight+",width="+nWidth+",scrollbars=no,resizable=no,top=0,left=0");
	NewWindow.document.write ("<html><head><title>KUVIA LAITTEISTAMME</title></head>");
	NewWindow.document.write ("<body><center><font face='Verdana' size='1' color='blue'>");	
	NewWindow.document.write (cMessage); 
	NewWindow.document.write ("Sulje kuva klikkaamalla sitä</font>");
	NewWindow.document.write ("<img src=");
	NewWindow.document.write (cPicture);
	NewWindow.document.write (">");
	NewWindow.document.write ("<center><form><body onClick='self.close()'>");
	NewWindow.document.write ("</form></center></body></html>");
	NewWindow.document.close();
	return false; }

