// JavaScript Document

function fc_onglet(sel,nb_onglet,cible_onglet,url,nom_site_id)
 {
  getXhr_onglet();
  xhr_onglet.onreadystatechange = function()
   {
    if(xhr_onglet.readyState == 4 && xhr_onglet.status == 200)
     {
      // Nous remplacons le contenu du div
      document.getElementById(cible_onglet).innerHTML = xhr_onglet.responseText;
     }
   }
  xhr_onglet.open("POST",url,true);
  xhr_onglet.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
  xhr_onglet.send("sel="+sel+"&nb_onglet="+nb_onglet+"&cible_onglet="+cible_onglet+"&nom_site_id="+nom_site_id);
 }