<!--
function afficheVignette(cheminVignette,cheminMaxi,Nom,altLanguage)
	{
	document.write('<A HREF="javascript:afficheMaxiPic(\''+cheminMaxi+'\',\''+Nom+'\')"><IMG SRC="'+cheminVignette+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="'+altLanguage+'"></A>');
	}
function afficheMaxiPic(chemin,titre)
	{

    i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>'+titre+'</TITLE></HEAD><BODY style="margin:20px 15px 5px 15px;background-color: #a8a87e;" onLoad="focus()"><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+(document.imageTest.width/2),document.imageTest.height+100)"></CENTER></BODY></HTML>';
	popupImage = window.open('','popup','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
//-->	