function popup(photo, titre, largeur, hauteur) { // galerie

  var largeurecran=screen.width
  var hauteurecran=screen.height
  var largeuraffichee
  var hauteuraffichee
      largeuraffichee=largeur;
      hauteuraffichee=hauteur;
      largeurpopup=parseInt(largeur);
      largeurpopup+=20;
      hauteurpopup=parseInt(hauteur);
      hauteurpopup+=20;
  if (hauteuraffichee>=hauteurecran) {
      largeuraffichee=hauteurecran*(largeurecran/hauteuraffichee);
      hauteuraffichee=hauteurecran;
      largeurpopup=largeuraffichee;
      hauteurpopup=hauteuraffichee;
  }

  var top=(screen.height-hauteuraffichee)/2;
  var left=(screen.width-largeuraffichee)/2;

  var contenu="<html><head><title>&nbsp;"+titre+"</title></head><body topmargin='0' leftmargin='0' scroll='no'><p><a href='javascript:self.close()'><img border='0' src='"+photo+"' width='"+largeuraffichee+"' height='"+hauteuraffichee+"' alt='CLIC POUR FERMER'></a><div id='Layer1' style='position:absolute; z-index:1; left: 2; top: 2'><font size='1' color='red' face='Comic Sans MS, Verdana, Arial, Helvetica, sans-serif'></font></div></p></body></html>";
  var fenetre=open("","","title="+titre+",resizable=no, top="+top+", left="+left+", width="+largeurpopup+", height="+hauteurpopup+"");
  fenetre.document.write(contenu);
}
