<!-- Put this in the head of the document containing the "clickable" images. Change background colour, font clour, font face etc in this section. If you want your new windows to have different background colors etc, use a new function, ie OpenNewWindow2 etc -->
	
	<!--- Hide script from old browsers
	function OpenNewWindow(cWinName,cPicture,nWidth,nHeight,cMessage,nBorder)
	{
	nWidth = nWidth + 30;
	nHeight = nHeight + 85;

	nHeight = Math.min(nHeight, screen.height);

	NewWindow=window.open("",cWinName,"HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=yes,resizable=yes,top=25,left=25");
	NewWindow.document.write ("<HTML><HEAD>");
	NewWindow.document.write ("<meta http-equiv='Content-Type' content='text/html; charset=windows-1251'>");
	NewWindow.document.write ("<TITLE>");
	NewWindow.document.write ("ÐÓÑÑÊÎÅ ÂÎÑÊÐÅÑÅÍÈÅ");
	NewWindow.document.write ("</TITLE></HEAD>");
      NewWindow.document.write ("<center><FORM><INPUT TYPE='image' SRC='")
	NewWindow.document.write (cPicture);
	NewWindow.document.write ("' onClick='self.close()' alt='çàêðûòü'>");
	NewWindow.document.write ("</FORM></CENTER>");
	NewWindow.document.write ("<BODY BGCOLOR='#FFF9AA'>");	//#FFFBD0
	NewWindow.document.write ("<P ALIGN=CENTER>");
	NewWindow.document.write ("<FONT FACE='Verdana' SIZE='+1' COLOR='Black'><B>");
	NewWindow.document.write (cMessage);
	NewWindow.document.write ("</B></FONT></P>");
	NewWindow.document.write ("</BODY></HTML>");
	NewWindow.document.close();
	return false;
	}
//
	function OpenNewWindow2(cWinName,cPicture,nWidth,nHeight,cMessage,nBorder)
	{
	nWidth = nWidth + 20;
	
	nHeight = Math.min(nHeight, screen.height);

	NewWindow=window.open("",cWinName,"HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=yes,resizable=yes,top=10,left=30");
	NewWindow.document.write ("<HTML>");
	NewWindow.document.write ("<meta http-equiv='Content-Type' content='text/html; charset=windows-1251'>");
	NewWindow.document.write ("<HEAD><TITLE>");
	NewWindow.document.write (cMessage);
	NewWindow.document.write ("</TITLE></HEAD><BODY BGCOLOR='#FFF9AA'");
	NewWindow.document.write ("topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'");
	NewWindow.document.write (">");
	NewWindow.document.write ("<IMG ALIGN='left' SRC=");
	NewWindow.document.write (cPicture);
	NewWindow.document.write (">");
	NewWindow.document.write ("</BODY></HTML>");
	NewWindow.document.close();
	return false;
	}
	// end hiding from old browsers -->
	
