//
//
//
var MyWindow = null;


function OpenPopUp(OPENIMG,descr) {
    MyWindow = window.open('','popupWin','resizable=no,scrollbars=no,top=0,left=0');
    MyWindow.document.open();
    MyWindow.document.write('\
<html>\
<body onLoad="window.focus();resize2pic()" BGColor=WHITE Text=#00AEEF>\
<Center><A Href="javascript:window.close();"><img src="' + OPENIMG +'" 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 + 50,document.images.img.height + 70);\
    }\
}\
</script>\
</html>\
');
    MyWindow.document.close();
}
