/*
 * imgPopup
 *
 * Affiche une image d'url 'image' dans une popup de titre 'title' et de dimension width * height
 */
function imgPopup(image,title,width,height)
{
  var html = '<title>' + title + ' - Cliquer pour fermer</title><body style="margin:0px;border:0px" onclick="javascript:window.close()"><img src="' + image + '" alt="cliquer pour fermer" /></body>';

  var popup = window.open(image, '__image_popup', 'width=' + width+ ', height=' + height + ', status=no');

  /* popup.document.write(html);*/
  popup.focus();
}
