	// Créé par Vincent Guesnard aka Kolibot ( contact@kolibot.fr )
	// Droits d'exploitation réservés à Sicesi
  // Dernière modification : 18/05/08
  
  function getFiche(id,onglet,fromHistory) {
    current_onglet = $('current_onglet').innerHTML;
    if(current_onglet!=onglet) {
      if (fromHistory==0) {
        dsHistory.addFunction(function () { getFiche(id,onglet,1); } );
      }
      $('nav_fiche_'+current_onglet).setAttribute('class','');
      var pars = 'id='+id+'&onglet='+onglet;
    	var myAjax = new Ajax.Request(url_home+'ajax/fiche.php',
    				{ method : 'post', parameters : pars, onComplete : setFiche });
  	  $('fiche_content').innerHTML ='<p style="text-align:center;margin-top:100px;"><img src="http://www.prix-portables.fr/images/ajax-loader2.gif" alt="Chargement en cours" /></p>';
      $('nav_fiche_'+onglet).setAttribute('class','active');
      $('current_onglet').innerHTML = onglet;
    }
  }
  function setFiche(obj) {
    $('fiche_content').innerHTML = obj.responseText;
  }