function pop_cert(url, w, h) {
  var options = "width=" + w + ",height=" + h + ",fullscreen=0,toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0";
  w_var = (Math.round(Math.random()*1000));
  popup = window.open("", "win"+w_var, options);
  popup.document.write("<html><head><title>View</title></head><body onClick=self.close(); style=\"margin:0px; cursor:hand;\" leftmargin=0 topmargin=0><img alt=Закрыть src="+url+"></body></html>");
  popup.status = "Щелкните чтобы закрыть";
  popup.focus();
}


