function openWin1(foto,nome) {
	po=window.open('','PhotoGallery','width=360,height=400,toolbar=no,title=no,directories=no,scrollbars=no,resizable=no');
	doc=po.document;
	
	str=	'<HTML><HEAD><TITLE>Photo Gallery</TITLE><link href=style.css rel=stylesheet type=text/css></HEAD>'+
		'<body bgcolor=#5280AB text=#FFFFFF topmargin=5 link=#FFFFFF vlink=#FFFFFF alink=#FFFFFF>'+
		'<TABLE WIDTH=400 HEIGHT=100% BORDER=0 CELLSPACING=0 CELLPADDING=0 ALIGN=CENTER valign=center>'+
		'<TR><TD ALIGN=left valign=top><font face=arial size=2 color=#FFFFFF><strong>'+ nome + '</strong></font></td>'+
		'</tr><TR><TD COLSPAN=2 ALIGN=CENTER><img src=images/' +
		foto +
		' class=bordobianco></TD></TR></TABLE></BODY></HTML>';
	doc.write(str);
}

