function popup(chemin) {
   html = '<html><head><title>CRC</title></head><body scroll="no" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0"><IMG src="'+chemin+'" BORDER=0 NAME=popup onLoad="window.resizeTo(document.popup.width+10,document.popup.height+50)"></body></html>';
   popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close()
}
