function popup(url)
	{
	  var w = 600;
	  var h = 570;
	  var s = 'yes';
	  var aleft = (screen.width-w)/2;
	  var atop = (screen.height-h)/2;
	  var Options = "toolbar=no,width=" + w + ",height=" + h + ",scrollbars=" + s + ",resize=no,top="+atop+",left="+aleft;
	  win = window.open('',"newwin", Options);
	  win.document.open("text/html", "replace");
      win.document.write("<html><head><title>Press Review</title><meta http-equiv='imagetoolbar' content='no'><style type='text/css'>body{margin:0px;background-color:#000;text-align:center;}</style></head><body><img src='"+url+"' border=0></body></html>");
      win.document.close();
      win.focus();
	}
