//
// Pop Up Window script By Partizan
//
var MyWindow = null;

function OpenPopUp(kartinka,descr) {
    MyWindow = window.open('','popupWin','resizable=yes,scrollbars=yes,top=0,left=0');
    MyWindow.document.open();
    MyWindow.document.write('\
<html>\
<body onLoad="window.focus();resize2pic()" BGColor=white Text=#00AEEF>\
<Center><FONT FACE="ARIAL,TIMES NEW ROMAN" SIZE="4" COLOR="blue"><B>' + descr + '</B></FONT><br>\
<FONT FACE="ARIAL,TIMES NEW ROMAN" SIZE="1" COLOR="white"><B></B></FONT>\
<A Href="javascript:window.close();"><img src="' + kartinka +'" name="img" Border=0></A>\
</Center>\
</body>\
<Script Language="JavaScript">\
function resize2pic() {\
    if ( (screen.availWidth <= (document.images.img.width))\
        && (screen.availHeight <= (document.images.img.height)) )\
    {\
        window.resizeTo(screen.availWidth, screen.availHeight);\
    } else {\
        window.resizeTo(document.images.img.width + 50,document.images.img.height + 105);\
    }\
}\
</script>\
</html>\
');
    MyWindow.document.close();
}
