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>Baikal-Extreme</title></head><body style="margin:40px 45px 50px 45px" bgcolor=#CCCCCC><table border=0 cellspacing=0 cellpadding=4><tr><td bgcolor=#000000><a href="#" onClick="window.close();return false;"><img width="' + ImgWidth + '" height="' + ImgHeight + '" src="' + ImgSource + '" alt="' + ImgAlt + '" border="0" style="border: solid 1px #FFFFFF;"></a></td></tr></table></body></html>';

   NewWindow=window.open( '','NewWindow',WinAppearence);
   NewWindow.document.writeln(Hypertext);
   NewWindow.focus();
}

