function afficheMaxi(chemin,titolo)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML>\n<HEAD>\n<TITLE>'+titolo+'</TITLE>\n</HEAD>\n<BODY BGCOLOR="##bbffaa" BACKGROUND="images/caricamento.gif" LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>\n<CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest style="border: 2px groove white;" onLoad="window.moveTo(100,100);window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank','width=800,height=600,toolbar=no,location=no,directories=0,menuBar=no,scrollbars=yes,resizable=no');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
