




/*
     FILE ARCHIVED ON 19:14:40 фев 25, 2007 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:36:40 янв 18, 2012.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
function pshow(ImageName,Wid,Hei,WinName,Tit) {

       ScScroll=" scrollbars=no ";
       ScHei=Hei; ScWid=Wid;
       if (Hei>(screen.height-100)) {
        ScScroll=" scrollbars=yes ";
        ScHei=screen.height-100;
        ScWid=Wid+17;
       } 
       if (Wid>(screen.width-100)) {
        ScScroll=" scrollbars=yes ";
        ScWid=screen.width-100;
       } 

      newWindow=window.open("",""+WinName+"","toolbar=no,location=no,directories=no,status=no,menubar=no,fullscreen=no, "+ScScroll+ " ,resizable=yes,width="+ScWid+",height="+ScHei+"");
//     newWindow=window.open("",""+WinName+"","toolbar=no,location=no,directories=no,status=no,menubar=no,fullscreen=no,scrollbars=no,resizable=no,width="+Wid+",height="+Hei+"");
       var newContent = "<html><head>\n"
       newContent += "<title>" + Tit + "</title></head>\n"
       newContent += "<script language=\"JavaScript\">\n"
       newContent += "var r=-1\n"
       newContent += "function Init() {\n"
       newContent += "if (navigator.appName==\"Netscape\") r=0;\n"
       newContent += "self.focus(); window.setTimeout(\"r = 0\",1000)\n}\n"
       newContent += "</script>\n"
       newContent += "<body bgcolor=\"#ffffff\" onLoad=\"Init()\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\" leftmargin=\"0\">\n"
       newContent += "<a href=\"javascript: if (r == 0) self.close()\"><img border=\"0\" src=\"" + ImageName + "\" width=" + Wid + " height=" + Hei + " alt=\""+ Tit+"\"></a>"
       newWindow.document.writeln(newContent)
       newWindow.document.writeln("</body></html>")
       newWindow.document.close()
}


