// JavaScript Document
function ingrandiscifoto (nomefoto,descrizione) {
winopts =  "toolbar=no,directories=no,menubar=no,width=750,height=400,resizable=yes,scrollbars=yes";
w1 = window.open("", "_blank",  winopts);
w1.document.writeln("<html>");
w1.document.writeln("<head>");
titolo = "<title>Alma Maris - " + descrizione + "</title>";
w1.document.writeln(titolo);
w1.document.writeln("</head>");
w1.document.writeln("<body>");
fotografia = "<center><img src=\"" + nomefoto + "\"></center>";
w1.document.writeln(fotografia);
w1.document.writeln("</body>");
w1.document.writeln("</html>");
return ;
}
