function show_photo( pFileName, pTitle, pCaption) {
photoWin = window.open("", "photo", "width=700,height=600,scrollbars=no,resizable=no,screenX=20,screenY=0,left=20,top=0");
	photoWin.document.write('<html><head><title>' + pTitle + '</title>');
	photoWin.document.write('<STYLE><!-- a {text-decoration: none;}--></STYLE></head>');		
	photoWin.document.write('<BODY ONSELECTSTART="return false" ONCONTEXTMENU="return false" BGCOLOR=#000000 TEXT=#2B36A1 LINK=#33CCFF VLINK=#FF6666 margintop=1>');
	photoWin.document.write('<center>');
	photoWin.document.write('<SPAN STYLE="background-color: #FFFF00"><font size="2 px" face="impact,arial,helvetica"><b>' + pCaption + '</b></font></span><br>');
	photoWin.document.write('<a color=#000000 href="JavaScript:onClick= window.close()" title="CHIUDI"><img src="' + pFileName + '"></a><br>');
	photoWin.document.write('<font face="arial,helvetica" color="yellow">');	
	photoWin.document.write( '<b>' + pTitle + '</b>');
	photoWin.document.write('<br>');
	photoWin.document.write('');
	photoWin.document.write('</font>');
	photoWin.document.write('<br>');
	photoWin.document.write('<font face="impact,arial,helvetica" size="3 px" color="white">-[ <a  href="JavaScript:onClick= window.close()"><font color="white" face="impact,arial,helvetica" size="3 px" >CHIUDI</font></A> ]-</font>');
	photoWin.document.write('</body></html>');
	photoWin.document.close();	
	
//NetScape
	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
}
//-->
 