var MyWindow = null;

function OpenPopUp(kartinka,descr) {
    MyWindow = window.open('','popupWin','resizable=no,scrollbars=no,top=0,left=0');
    MyWindow.document.open();
    MyWindow.document.write('\
<html>\
\<TITLE>:: VISATURAS :: - Туристическое агенство</TITLE>\
<body onLoad="window.focus();resize2pic()" size=1 text=#336633 vLink=#FF0000 aLink=#00FF00 link=#000099 bgColor=#003300  leftMargin=0 topMargin=0 marginheight="0" marginwidth="0">\
<Center><A Href="javascript:window.close();"><img src="' + kartinka +'" name="img" Border=0></A><br />' + descr + '</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 + 0,document.images.img.height + 00);\
    }\
}\
</script>\
</html>\
');
    MyWindow.document.close();
}

