function aff_box_index(typ,cat,sesid)
{   
 if(typ=='solde'){document.getElementById(typ+'_19').style.color='#FFFFFF';}
 document.getElementById(typ+'_24').style.color='#FFFFFF';
 document.getElementById(typ+'_23').style.color='#FFFFFF';
 document.getElementById(typ+'_26').style.color='#FFFFFF';
 document.getElementById(typ+'_25').style.color='#FFFFFF';
 document.getElementById(typ+'_29').style.color='#FFFFFF';
 document.getElementById(typ+'_43').style.color='#FFFFFF';
 document.getElementById(typ+'_'+cat).style.color='#FFFF80';

 texte_box = file('tpl/zemanga/customsfiles/ajax_liste_produits_accueil.php?cat='+escape(cat)+'&typ='+escape(typ)+'&affze='+escape(sesid));

 texte_explode = texte_box.split('|DM|');
 
 document.getElementById('content_'+typ).innerHTML = texte_explode[0];
 document.getElementById('content_'+typ+'_prod').innerHTML = texte_explode[1];
 
 initBuyButtons();
 
 document.getElementById('content_'+typ+'_all').innerHTML = "<a href='categories.php?cPath="+cat+"' target='_self' style='color:#FFFFFF'>Accéder à la section &#187;</a>";
} 

// APPEL AJAX

function file(fichier)
{
 if(window.XMLHttpRequest) // FIREFOX
 {
  xhr_object = new XMLHttpRequest();
 }
 else if(window.ActiveXObject) // IE
 {
  xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
 }
 else
 {
  alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
  return;
 }

 xhr_object.open("GET", fichier, false);
 xhr_object.send(null);

 if(xhr_object.readyState == 4)
 {
  return(xhr_object.responseText);
 }
 else
 {
  return(false);
 }
}                                                                                                                                   