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:40px 45px 50px 45px" bgcolor=#585858><table border=0 cellspacing=0 cellpadding=4 align="center"><tr><td bgcolor=#A2A2A2><table border=0 cellspacing=0 cellpadding=1><tr><td bgcolor=#000000><a href="#" onClick="window.close();return false;"><img width="' + ImgWidth + '" height="' + ImgHeight + '" src="' + ImgSource + '" alt="' + ImgAlt + '" border="0"></a></td></tr></table></td></tr></table><div align=center style="padding-top:3px;font-family: Verdana, Arial;font-size:12px;color:#FFFFFF;">' + ImgAlt + '</div></body></html>';

   NewWindow=window.open( '','NewWindow',WinAppearence);
   NewWindow.document.writeln(Hypertext);
   NewWindow.focus();
}
