/*function afficheMaxi(chemin,titolo)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML>\n<HEAD>\n<TITLE>'+titolo+'</TITLE>\n</HEAD>\n<body background="images/caricamento.gif" bgcolor="#E8E8E8" leftmargin="3" topmargin="5" rightmargin="0" bottommargin="0" marginwidth="0">\n<CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest id=imageTest style="border: 2px groove white; margin-bottom: 0px;" onLoad="window.moveTo(200,200);window.resizeTo(document.imageTest.width+28,document.imageTest.height+84)"></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank','width=400,height=450,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=no,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
*/