function imgpopup(imgmini,imgbig)
	{
	document.write('<A HREF="javascript:afficheMaxi(\''+imgbig+'\')"><IMG SRC="'+imgmini+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="Clicca per ingrandire la foto"></A>');
	}
function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML>\n<HEAD>\n<TITLE>Image</TITLE>\n</HEAD>\n<BODY LEFTMARGIN=0 BGCOLOR="#7E4A3D" MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>\n<CENTER><a href="javascript:close()"><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></a></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank','top=50,left=100,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
