function ApriFinestra(nomeFoto,dida)
{
myWin= window.open("", "displayWindow","width=450,height=460,status=yes,toolbar=no,menubar=no");  
myWin.document.open();
// create document  
myWin.document.writeln("<html><head><title>Dettaglio</title>");
myWin.document.writeln("</title></head><body BGCOLOR=#FFFFFF>");
myWin.document.writeln("<CENTER>");
myWin.document.writeln("<TABLE WIDTH=100% BORDER=0>");
myWin.document.writeln("<TR><TD HEIGHT=420 VALIGN=middle ALIGN=center VALIGN=middle>");
myWin.document.writeln("<FONT SIZE=2 FACE='Verdana, Geneva'>");
myWin.document.writeln("<A HREF=javascript:window.close()><IMG SRC='"+nomeFoto+"' ALIGN=middle BORDER=0 ALT='foto'> </a>");
myWin.document.writeln("<BR>&nbsp;<B>"+dida+"</B></FONT>"); 
myWin.document.writeln("</TD></TR></table>");
myWin.document.writeln("</CENTER>");
myWin.document.writeln("</body></html>");
myWin.document.close();
}
