 function autoPopup(apri,w,h,titolo) {
   var l = Math.floor(((screen.width-w)/2));
   var s = Math.floor(((screen.height-h)/2));
   var stili = "width="+w+", height="+h+", top="+s+", left="+l+", status=no, menubar=no, toolbar=no, scrollbar=no";
   var testo = window.open("", "", stili);
      testo.document.write("<html>");
      testo.document.write("<head>");
      testo.document.write("<title>"+titolo+"</title>");
      testo.document.write("</head>");
      testo.document.write("<body style='border:0px;padding:2px;margin:2px;align:center'>");
      testo.document.write("<img src="+apri+">");
      testo.document.write("</body>");
      testo.document.write("</html>");
 }