
function CreatePopup(url, title, imgwidth, imgheight) {
  popup = window.open('','popupwin','scrollbars=no,status=no,toolbar=no,menubar=no,width='+imgwidth+',height='+imgheight);
  popup.document.write('\
    <html>\
     <head>\
      <title>' + title + '</title>\
      <style>\
        body { margin: 0px; padding: 0px; border: 0px; background: url("'+ url +'") no-repeat fixed center; }\
        img  { border: 0px; float: left; margin: 0px; padding: 0px; }\
      </style>\
			<script type="text/javascript">\
				var left = (screen.width / 2) - (imgwidth / 2);\
				var top = (screen.height / 2) - (imgheight / 2);\
				window.moveTo(left, top);\
				\
			</script>\
     </head>\
     <body onblur="window.close()" onclick="window.close()">\
     </body>\
    </html>\
  ');
  popup.document.close();
  return false;
}
