<!--
function agrandi(i,w,h) {
	var wParams = 'scrollbars=no,location=no,toolbar=no,status=no,directories=no,menubar=no';
		wParams += ',width='+w+',height='+h;
    var w = window.open('','agrandissementcidref', wParams);
	w.document.write( "<html><head><title>Photo</title></head>\n" );
	w.document.write( "<body style='overflow:hidden;' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>" );
	w.document.write( "<a href='javascript:window.close();'><img src='"+i+"' border=0></a>" );
	w.document.write( "</body></html>" );
	w.document.close();
}
//-->