function goImgWin(myImage,capt) {

TheImgWin = window.open('','image','resizable=1,type=fullWindow,fullscreen,scrollbars=1, scrollbars=yes');
TheImgWin.document.open();
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>Popup<\/title><\/head>');
TheImgWin.document.write('<body style="overflow:auto;" bgcolor="#000000">');
TheImgWin.document.write('<center><img src="'+myImage+'" border="0" alt="'+capt+'"><\/center>');
TheImgWin.document.write('<p align="center"><font color="#E7BA83" face="Verdana" size="3"><b>'+capt+'<\/b><\/font><\/p>');
TheImgWin.document.write('<center><font face="Verdana" size="2"><a href="javascript:window.close();"><font color="#C0C0C0">Close This Window<\/font><\/a><\/font><p>&nbsp;<\/p><\/center>');
TheImgWin.document.write('<\/body><\/html>');
TheImgWin.focus();
TheImgWin.document.close();
return false;
}