/* ===============
    Classe Biblio
   =============== */

function Biblio()
{

}

Biblio.prototype.afficher = function()
{
  new Ajax.Request('module_web/flux/ajax/affiche_biblio.php', {
                   onSuccess: function(t)
                              {
                                document.getElementById('biblio').innerHTML = t.responseText;
                              }});
}

Biblio.prototype.ajouterBoite = function(type)
{
  nvelleBoite = new Boite(0, 1);
}
