function afficheMaxi(chemin) { 
     i1 = new Image; 
     i1.src = chemin; 
     html = '<HTML><HEAD><TITLE>Image</TITLE></HEAD><BODY LEFTMARGIN="2" MARGINWIDTH="2" TOPMARGIN="2" MARGINHEIGHT="2" bgcolor="#EA5D1F"><CENTER><a href="javascript:window.close();"><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+18,document.imageTest.height+83)"></a></CENTER></BODY></HTML>'; 
     popupImage = window.open('popup','_blank','toolbar=0,location=0,directories=0,menubar=0,scrollbars=0,resizable=0,status=1,width=200,height=200'); 
     popupImage.document.open(); 
     popupImage.document.write(html); 
     popupImage.document.close() 
}; 
