
function GBO_afficherBarreSousOnglets(p_identifiant){
this.masquerTout();
this.afficherOnglet(p_identifiant);        
this.gsbo.afficherSousOnglets(p_identifiant);
}
function GBO_masquerTout(){    
listeDT = this.barreOnglets.getElementsByTagName('dt');
for(var i=0 ; i < listeDT.length ; i++){
listeDT[i].className = 'none';
}
}
function GBO_afficherOnglet(p_identifiant){
this.ongletCourant = document.getElementById(p_identifiant);
lib.setClass(this.ongletCourant, "ongletSelectionne");
}
function GestionnaireBarreOnglets(p_formulaire){
this.ongletCourant = null;
this.formulaire = p_formulaire;
this.barreOnglets = document.getElementById('barreOnglets');
this.gsbo = new GestionnaireBarreSousOnglets(this.formulaire);
this.masquerTout = GBO_masquerTout;
this.afficherOnglet = GBO_afficherOnglet;
this.afficherBarreSousOnglets = GBO_afficherBarreSousOnglets;
}
