	function ONW(title,name,width,height){ 
       var OpenWindow=window.open("", "", "width="+width+",height="+height);
   	   OpenWindow.document.write("<html>")
   	   OpenWindow.document.write("<head>")
   	   OpenWindow.document.write("<title>"+title+"</title>")
   	   OpenWindow.document.write("<meta http-equiv='Content-Type' content='text/html; charset=windows-1251'>")
   	   OpenWindow.document.write("</head>")
   	   OpenWindow.document.write("<body onClick='self.close();' style='background-color: #000000; margin-top: 0px; margin-bottom: 0px; margin-right: 0px; margin-left: 0px; margin-width: 0px; margin-height: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px'>")
   	   OpenWindow.document.write("<img src='"+proname_dir+"images/"+name+"' border=0 hspace=0 vspace=0 width="+width+" height="+height+" align=left>")
   	   OpenWindow.document.write("</body>")
   	   OpenWindow.document.write("</html>")
    }