// JavaScript Document

function ouvrirZoom(fichier, largeur, hauteur)
{
  // initialisation de la variable recevant les options de fenêtre
  options = 'status=no,';
  
  // 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,"zoom",options);
  fen.focus();
}

function ouvrirCampagne()
{
	// pour centrage à l'écran de la fenêtre
	largeur = 720;
	hauteur = 700;
	 
    posH = (screen.width-largeur)/2;
    posV = (screen.height-hauteur)/2;
	
	fen=window.open( "fed-francaise-batiment.htm", "campagne", "width="+largeur+", height="+hauteur+", scrollbars=yes, top="+posV+",left="+posH+", menubar=yes, toolbar=yes, resizable=yes");
  	fen.focus();

}
