function Requete(fichier, typeRetour) {
  if(window.XMLHttpRequest) {
    // FIREFOX alert("FIREFOX");
    xhr_object = new XMLHttpRequest();
  }
  else if(window.ActiveXObject) {
  // IE alert("IE");
    xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
  } 
  else {
    alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); 
    return(false);
  }

  xhr_object.open("GET", fichier, false);
  xhr_object.send(null);
  if(xhr_object.readyState == 4) {
    if(typeRetour=='Text') return(xhr_object.responseText);
    else return(xhr_object.responseXML);
  }
  else {
    alert("La connexion avec le site ŕ été perdue.");
    return(false);
  }
}