/* http://www.java.scripts-fr.com */

function ImageMax(chemin)
   {
   i1 = new Image;
   i1.src = chemin;
   html = '<html><head><title>Grand format</title></head><body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" onBlur="top.close()"><IMG src="'+chemin+'" BORDER=0 NAME=ImageMax onLoad="window.resizeTo(document.ImageMax.width+29,document.ImageMax.height+31)"></body></html>';
   popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,left=50,top=50');
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close()
   }


