var NewWindow=null;

function ShowImage(ImgSource,ImgWidth,ImgHeight,ImgAlt) { 
   var WinLeft=Math.floor((screen.width-ImgWidth)/2);
        var WinTop=Math.floor((screen.height-ImgHeight)/2);
   window.status='Click Here';
      if (NewWindow!=null && !NewWindow.closed) {
      NewWindow.close();
   }

   var WinAppearence = 'scrollbars=no,width='+(ImgWidth)+',height='+(ImgHeight)+',top='+WinTop+',left='+WinLeft;
   var Hypertext = '<html><head><title>Баргузинский хр. Март 2004</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="black" background="images/bgPopup.gif"><a href="#" onClick="window.close();return false;"><img width="' + ImgWidth + '" height="' + ImgHeight + '" src="' + ImgSource + '" alt="' + ImgAlt + '" border="0"></a></body></html>';

   NewWindow=window.open( '','NewWindow',WinAppearence);
   NewWindow.document.writeln(Hypertext);
   NewWindow.focus();
}
