function openWin(foto,nome) {
	po=window.open('','PhotoGallery','width=600,height=500,toolbar=no,title=no,directories=no,scrollbars=yes,resizable=no');
	doc=po.document;
	
	str=	'<HTML><HEAD><TITLE>Photo Gallery</TITLE><link href=stile.css rel=stylesheet type=text/css></HEAD>'+
		'<body bgcolor=415868 text=#FFFFFF topmargin=5 link=#FFFFFF vlink=#FFFFFF alink=#FFFFFF>'+
		'<TABLE WIDTH=505 HEIGHT=100% BORDER=0 CELLSPACING=0 CELLPADDING=0 ALIGN=CENTER valign=center>'+
		'<TR><TD ALIGN=left valign=top><font face=tahoma size=2 color=#FFFFFF><strong>'+ nome + '</strong></font></td>'+
		'<TD ALIGN=right><a href=javascript:print();><img src=images/stampa.gif width=15 height=14 border=0></a>&nbsp;<a href=javascript:window.close();><img src=images/chiudi.gif border=0></a></td>'+
		'</tr><TR><TD COLSPAN=2 ALIGN=CENTER><img src=images/' +
		foto +
		' class=fotografie></TD></TR></TABLE></BODY></HTML>';
	doc.write(str);
}
