var NewWindow=null;

function ShowImage(ImgWidth,ImgHeight,ImgAlt) { 
   var WinLeft=Math.floor((screen.width-ImgWidth)/2);
   var WinTop=Math.floor((screen.height-ImgHeight+300)/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>Georgia Laundry Brokers</title></head><body style="margin:20px 30px 20px 30px" bgcolor=#FFFFFF><div align="center"><a href="#" onClick="window.close();return false;" style="font-family: Arial, Helvetica, sans-serif;color:#186AAF;text-decoration:none;">' + ImgAlt + '</a></div></body></html>';

   NewWindow=window.open( '','NewWindow',WinAppearence);
   NewWindow.document.writeln(Hypertext);
   NewWindow.focus();
}
