var NewWindow=null;

function ShowImage(ImgSource,ImgWidth,ImgHeight,ImgAlt) { 
   var WinLeft=Math.floor((screen.width-ImgWidth-100)/2);
        var WinTop=Math.floor((screen.height-ImgHeight-100)/2);
   window.status='Click Here';
      if (NewWindow!=null && !NewWindow.closed) {
      NewWindow.close();
   }

   var WinAppearence = 'scrollbars=no,width='+(ImgWidth+100)+',height='+(ImgHeight+100)+',top='+WinTop+',left='+WinLeft;
   var Hypertext = '<html><head><title></title></head><body style="margin: 0px; background: #ECEABA;"><table style="width: 100%; height: 100%; background: #ECEABA;" border=0 cellspacing=0 cellpadding=0><tr><td style="vertical-align: middle; text-align: center;"><a href="#" onClick="window.close();return false;"><img width="' + ImgWidth + '" height="' + ImgHeight + '" src="' + ImgSource + '" alt="' + ImgAlt + '" border="0"></a></td></tr></table></body></html>';

   NewWindow=window.open( '','NewWindow',WinAppearence);
   NewWindow.document.writeln(Hypertext);
   NewWindow.focus();
}

