function afficheMaxi(chemin,titolo)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML>\n<HEAD>\n<TITLE>'+titolo+'</TITLE>\n</HEAD>\n<BODY BGCOLOR="##FF6600" 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=170,height=80,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
