﻿var libChoixGenre = "Recherche par :";
var listeGenres = new Array ()
listeGenres [0] = new GenreRessource ("grEnseignant","ENSEIGNANTS");
listeGenres [1] = new GenreRessource ("grDiplome","PROMOTIONS");
listeGenres [2] = new GenreRessource ("grSalle","SALLES");

function GenreRessource (aGenre, aLibelle) {
  this.genre   = aGenre;
  this.libelle = aLibelle;
}
