
  function popUp(imgName) {
   finestra = window.open("", "", "width=500, height=400, top=200, scrolling=no, noresize, toolbar=0, status=1");
   finestra.document.write("<html onLoad='this.focus()'><head><title>"+ imgName +"</title></head><body style='margin: 0; padding: 0'>");
   finestra.document.write("<img src='/fileadmin/template/img/visita/" + imgName  + ".jpg' border='0'>");
   finestra.document.write("</body></html>");
  }

