<!--INIZIO
// MAXI IMAGE1 SCRIPT

function mostraImmagine(miniatura,ingrandimento)
	{
	document.write('<A HREF="javascript:MostraIngrandimento(\''+ingrandimento+'\')"><IMG SRC="'+miniatura+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="Clicca per ingrandire - Clicks to enlarge"></A>');
	}
function MostraIngrandimento(mostra)
	{
	i1 = new Image;
	i1.src = mostra;

// Qui sotto puoi modificare il titolo comune a tutte le immagini.
	html = '<HTML>\n<HEAD>\n<TITLE>Still Life Vincenzo Avagliano</TITLE>\n</HEAD>\n<BODY BGCOLOR="#3e3e3e"><PRE><CENTER><B><FONT COLOR="#ffffff" FACE="Times New Roman">La riproduzione delle foto senza permnesso &egrave; proibito<PRE><CENTER><B><FONT COLOR="#ffffff" FACE="Times New Roman">Reproduction of the photos without permission is strictly prohibited.\n<BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=10 MARGINHEIGHT=0>\n<CENTER><IMG SRC="'+mostra+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo (document.imageTest.width+190,document.imageTest.height+160)"></CENTER><PRE><CENTER><B><FONT COLOR="#ffffff" FACE="Times New Roman">Photography and content: &COPY; Vincenzo Avagliano - All Rights reserved &COPY; 2005\n</BODY>\n</HTML>';

// Qui sotto puoi modificare l'aspetto del popup ed il suo posizionamento.
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,top=30,left=50');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
//--FINE>
