// JavaScript Document
// Ouvre l'image dans une popup
function ouvrirImage(url, height, width) {
  window.open(url, '', 'height='+height+', width='+width +',toolbar=no,menubar=no,status=no,resizable=yes');
}
