function goImgWin(myImage,myWidth,myHeight,origLeft,origTop,capt) {
var mh = myHeight + 100;
var mw = myWidth + 20;
TheImgWin = window.open('','image','height=' + mh + ',width=' + mw + ',toolbar=no, directories=no,status=no,' + 'menubar=no,scrollbars=no, resizable=yes');
TheImgWin.resizeTo(mw+2,mh+30);
TheImgWin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http:\/\/www.w3.org\/1999\/xhtml">');
TheImgWin.document.write('<head><title>PREUS<\/title><\/head>');
<!-- goImgWin('image1.jpg',300,300,10,10) -->
TheImgWin.document.write('<body style="overflow:hidden" bgcolor="#ffffff" text="black" onclick="self.close()">');
TheImgWin.document.write('<img src="'+myImage+'" width="'+myWidth+'" height="'+myHeight+'" ');
TheImgWin.document.write('border="0" alt="'+capt+'"\/><font size="-2" face="Verdana"><p align="left">'+capt+'<\/p><\/font>');
TheImgWin.document.write('<\/p><\/body><\/html>');
TheImgWin.moveTo(origLeft,origTop);
TheImgWin.focus();
}