function PopupImage(img, titre, auteur,largeur,hauteur) { hauteur+=35;
  
  Fenetre = window.open('','Image','width=400,height=400,toolbar=no,scrollbars=no,resizable=no');

  Fenetre.document.write("<html><head><title>"+titre+" de "+auteur+"</title></head>");

  Fenetre.document.write("<body onload='window.resizeTo("+largeur+","+hauteur+")' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>"); 

  Fenetre.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td valign='middle' align='center'>"); 

  Fenetre.document.write("<img src='"+img+"' border='0' alt='"+auteur+"' title='"+titre+"'>");

  Fenetre.document.write("</td></tr></table></body></html>"); 

  Fenetre.document.close(); 
}