function afficheMaxi(chemin,titre)
	{

    i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>'+titre+'</TITLE></HEAD><BODY style="margin:20px 15px 5px 15px;background-color: #1a0909;background-image: url(images/fond_volutes.gif);background-position: right bottom;background-repeat: no-repeat;" 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()
	};