///////// MENU ADHERENT //////////////// var menu1=new CreerMenu("#0000CC","#0000FF"); menu1.AddRub("","N","idx_Particuliers.asp","_top"); menu1.AddRub("","O",""); menu1.AddLien("      - Annuaire","idx_Annuaire.asp","right"); menu1.AddLien("      - Groupes de travail","txt_Groupes.htm","right"); menu1.AddLien("      - Adhésion","Form_Demande_Informations.asp","right"); function CreerMenu(ColFerme,ColOuvert) { this.nb_rub=0; this.colF=ColFerme; this.colO=ColOuvert; this.AddRub=AddRubrique; this.AddLien=AddLink; } function AddRubrique(txt,aff,page,targ) { var rub = new Object; rub.txt=txt; rub.aff=aff; rub.page=page; rub.targ=targ; /////////// rub.nb_lien=0; this[this.nb_rub]=rub; this.nb_rub++; } function AddLink(txt,page) { var no_rub = this.nb_rub-1; var no_lien= this[no_rub].nb_lien; var lien = new Object; lien.txt=txt; lien.page=page; this[no_rub][no_lien]=lien; this[no_rub].nb_lien++; }