function agrandit(pathPetit,pathGrand,legende)
{
document.write('<A HREF="javascript:afficheGrand(\''+pathGrand+'\',\''+legende+'\')"><IMG SRC="'+pathPetit+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="Cliquez pour agrandir"></A>');
}
function afficheGrand(path,legende)
{
html = '<HTML><HEAD><TITLE>'+legende+'&nbsp;&nbsp;</TITLE></HEAD><BODY onLoad=\'compt=setTimeout("self.close();",45000)\' LEFTMARGIN=20 MARGINWIDTH=20 TOPMARGIN=20 MARGINHEIGHT=20 BGCOLOR=#DEE8ED><CENTER><A HREF="#" onClick="self.close()"><IMG SRC="'+path+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+50,document.imageTest.height+98)" alt="Cliquez pour fermer cette fenêtre"></A></CENTER></BODY></HTML>';
popupImage = window.open('','_blank','status=0,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,height=450,width=450,left=30,top=30');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()
};
