﻿


function PopUp(ImageName) {

  PopUpWindow=window.open("","Popup","status=no, width=1, height=1"); 
  PopUpWindow.document.writeln('<html><head><title>Popup</title></head>');
  PopUpWindow.document.writeln('<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" onLoad="window.resizeTo(document.images[0].width+10, document.images[0].height+29); window.moveTo(((screen.width-document.images[0].width)/2), ((screen.height-document.images[0].height)/2))" onBlur="self.close()">');   
  PopUpWindow.document.writeln('<img  src="/img/'+ImageName+'" onClick="self.close()">');  //load the image in the window
  PopUpWindow.document.writeln('</body></html>');
  PopUpWindow.document.close();
  PopUpWindow.focus();  // place the window in front
}
// ]]>