function apriPagina(page, w, h) //apertura pagina "page" in una nuova finestra
{
  var winl = (screen.width - w) / 2;
  var wint = 20;
  window.open(page,"ANTEPRIMA","toolbar=no,directories=no,left="+winl+",top="+wint+",menubar=no,width="+w+",height="+h+   ",resizable=no,scrollbars=yes,status=yes");
}

//funzione di visualizzazione immagini
function showImage(immagine, titolo)
{
    var winl = (screen.width - 800) / 2;
    var wint = (screen.height - 532) / 2;
    var immagin=immagine;
    msg=open("","","toolbar=no,directories=no,left="+winl+ ",top="+wint+",menubar=no,width=800,height=532,resizable=no");
    msg.document.write("<html><head><title>"+titolo+"</title></head>");
    msg.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
    msg.document.write("<img src="+immagine+"></body></html>");
	msg.document.close();
}

//funzione di visualizzazione immagini con dimensioni personalizzate
function showImageDim(immagine, titolo, w,h)
{
    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
    var immagin=immagine;
    msg=open("","","toolbar=no,directories=no,left="+winl+ ",top="+wint+",menubar=no,width="+w+",height="+h+   ",resizable=no");
    msg.document.write("<html><head><title>"+titolo+"</title></head>");
    msg.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
    msg.document.write("<img src="+immagine+"></body></html>");
	msg.document.close();
}

//funzione per il PopUp di pagine
//in ingresso: path alla pagina, larghezza finestra, altezza finestra
function openPopUp(page,w,h)
{
 var winl = (screen.width - w) / 2;
 var wint = (screen.height - h) / 2;
 var args = "toolbar=no,directories=no,left="+winl+",top="+wint+",menubar=no,width="+w+",height="+h+",resizable=no"
 window.open(page,"",args);
}
