  function OpenWin(url) {
    var winl = (screen.width - 500) / 2;
    var wint = 5;
  	disp = window.open("","pop","left="+winl+",top="+wint+",width=520,height=700");
  	content = '<html>';
  	content += '<title>______________</title>';
  	content += '<head>';
  	content += '<style type="text/css">';
  	content += 'img {width: 500px; height: 668px; border: 0;}';
	content += 'body {background: black;}';
	content += 'p {text-align: center;}';
  	content += '</style>';
  	content += '</head>';
  	content += '<body onBlur="self.close()">';
  	content += '<p><img src="' + url + '"></p>';
  	content += '</body></html>';
  	disp.document.write(content);
  	disp.document.close();
  }
