 function autoPopupGalleria(immagine,w,h) {
   var stili = "top=20, left=20, width="+w+", height="+h+", status=no, menubar=no, toolbar=no, scrollbars=no";
   var testo = window.open("", "", stili);
      testo.document.write("<html><head><title>Foto</title></head><body leftmargin=\"0\" topmargin=\"0\" >");
      testo.document.write("<img src=\"../../_images/galleria/"+immagine+"\" >");
      testo.document.write("</body></html> ");
      testo.document.write(" ");
 }


 function autoPopup(immagine,w,h) {
   var stili = "top=20, left=20, width="+w+", height="+h+", status=no, menubar=no, toolbar=no, scrollbars=no";
   var testo = window.open("", "", stili);
      testo.document.write("<html><head><title>Foto</title></head><body leftmargin=\"0\" topmargin=\"0\" >");
      testo.document.write("<img src=\"../../_images/"+immagine+"\" >");
      testo.document.write("</body></html> ");
      testo.document.write(" ");
 }

 function autoPopupScroll(immagine,w,h) {
   var stili = "top=20, left=20, width="+w+", height="+h+", status=no, menubar=no, toolbar=no, scrollbars=yes";
   var testo = window.open("", "", stili);
      testo.document.write("<html><head><title>Foto</title></head><body leftmargin=\"0\" topmargin=\"0\" >");
      testo.document.write("<img src=\"../../_images/"+immagine+"\" >");
      testo.document.write("</body></html> ");
      testo.document.write(" ");
 }