function Apri(immagine, nomeFinestra, larghezza, altezza, bgcolor) {
    newWindow = window.open("", "", "status=no,width="+larghezza+",height="+altezza+"");
    newWindow.document.open();
    newWindow.document.write('<html><title>'+nomeFinestra+'</title><body leftmargin=\"0\" topmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" bgcolor='+bgcolor+' onClick=\"self.close()\">');
    newWindow.document.write('<table width='+larghezza+' border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" height='+altezza+' ><tr><td>');
    newWindow.document.write('<img src=\"'+immagine+'\" width=\"'+larghezza+'\" height=\"'+altezza+'\" alt=\"Chiudi\">');
    newWindow.document.write('</td></tr></table></body></html>');
    newWindow.document.close();
    newWindow.focus();
}