 function imageG(chemin)
 {

 i1 = new Image();
 i1.src = chemin;

 html = '<HTML><HEAD><TITLE>SPORTACUS</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 body bgcolor="#ffffff"><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageGr onLoad="window.resizeTo(document.imageGr.width+40,document.imageGr.height+70)"></CENTER></BODY></HTML>';
 popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0, width=500, height=500, left=0, top=0');
 popupImage.document.open();
 popupImage.document.write(html);
 popupImage.document.close()
 }
