
///Gestionnaire du menu select principal

function vazy()
{
var saisie = document.FormMenu.selectName.selectedIndex;

switch (saisie) {

 default:
 alert("choisir une rubrique");
 break;

 case 2:
document.location.href = "edito.html";
//alert("en construction");
 break;

 case 4:
document.location.href = "entreprise.html";
//alert("en construction");
 break;

 case 6:
document.location.href = "paysage.html";
//alert("en construction");
 break;

 case 8:
document.location.href = "ref_public.html";
//alert("en construction");
 break;

 case 10:
document.location.href = "pepiniere.html";
//alert("en construction");
 break;

 case 12:
//document.location.href = "boutique.html";
alert("en construction");
 break;

 case 14:
//document.location.href = "faq.html";
alert("en construction");
 break;

 case 16:
document.location.href = "recrutementsans.html";
//alert("en construction");
 break;
 
}

}

/// FIN
