// OUVRIR FENETRE



function ouvrir(fichier, quoi)

{

	

	// initialisation de la variable recevant les options de fenêtre

  options = 'status=yes,';



	// taille fenêtre

	if (fichier == 'plan-v02.htm') {

	  
largeur = 500;
    hauteur = 400;

	  

		

	} else if (fichier == 'adhesion.php') {

	  

		options += 'menubar=yes, ';

		hauteur = 430;

	  largeur = 500;

	

	} else if (fichier == 'telecharger11-2008.htm') {
	  
	  options += 'menubar=yes, scrollbars=no, toolbar=no, resizable=no, ';
	  	
	  hauteur = 200;

	  largeur = 320;
	
	
	}

	 

  // 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,"cinemateur",options);

  fen.focus();



}
