// OUVRIR FENETRE

var fen;
fen = 0;

function ouvrir(fichier, largeur, hauteur, scrollbars)
{
	
  if (fen.closed == false) {fen.close();}
  
	// initialisation de la variable recevant les options de fenêtre
  options = '';
    
  // afficher le zoom 
 	options = "status=yes, ";

  if (scrollbars == 1) {options += "scrollbars=yes," ;}
  
  // 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();

	
}