function PopUpImage(chemin)
{
  html = '<html> <head> <title>Image agrandie</title> </head> <body onBlur="top.close()">'
  html = html + '<IMG src="'+chemin+'" BORDER=0 NAME=ImageMax onLoad="window.resizeTo(document.ImageMax.width+25, document.ImageMax.height+60)">'
  html = html + '</body></html>';
  popupImage = window.open('','_blank','toolbar=0, location=0, directories=0, menuBar=0, scrollbars=0, resizable=1');
  popupImage.document.open();
  popupImage.document.write(html);
  popupImage.document.close();
}

function OuvrirFenetre(url,nom,details)
{
  window.open(url,nom,details)
}

