// OUVRIR FENETRE
// mode = h pour horizontal, ou v pour vertical

function ouvrir(fichier, mode)
{
	
	// initialisation de la variable recevant les options de fenêtre
  options = '';

  // afficher le zoom 
  if (fichier.indexOf("zoom.php", 0) == 0){
	  if (mode == 'h') {
      hauteur = 300;
	    largeur = 400;
		}else if (mode == 'v'){
		  hauteur = 400;
	    largeur = 300;
		}
		options = "status=yes,";
		
  // afficher "le plan de localisation" 
  }else if (fichier == "plan.htm" ){
    hauteur = 197;
	  largeur = 305;
	  options = "status=yes,";
		
  } // if

  // pour centrage à l'écran de la fenêtre 
  posH = (screen.width-largeur)/2;
  posV = (screen.height-hauteur)/2;

  // options de la fenêtre
  options += "width="+largeur+",height="+hauteur+",top="+posV+",left="+posH;

  // ouverture de la fenêtre
  fen=window.open(fichier,"aglca",options);
  fen.focus();

	
}