function ImageMax(chemin)  {
	src=document.getElementById('bigPict').src;
   aaa = '<html><head><title>Zoom Image</title></head><body style="padding:0;margin:0" onBlur="top.close()"><img name="ImageMax" src="'+src+'" style="border:none" onLoad="window.resizeTo(document.ImageMax.width+10, document.ImageMax.height+60)" /></body></html>';
   
   popupImage =    window.open('','_blank','toolbar=0, location=0, directories=0, menuBar=0, scrollbars=0, resizable=0');
   popupImage.document.open();
   popupImage.document.write(aaa);
   popupImage.document.close();
   }