<!--
 //Obtention de XMLHttpRequest
 function getXhr() {
  if (window.XMLHttpRequest) { // Firefox and others
   xhr = new XMLHttpRequest(); 
   return xhr;
  }	else if (window.ActiveXObject) { // Internet Explorer 
   try { 
	xhr = new ActiveXObject("Msxml2.XMLHTTP"); 
	return xhr;
   }
   catch (e) { 
	xhr = new ActiveXObject("Microsoft.XMLHTTP"); 
	return xhr;
   }
  }	else { // XMLHttpRequest non supporté par le navigateur 
    alert("Your browser doesn't support AJAX/WEB 2.0"); 
	xhr = null; 
  } 
 }

 //Asynchrone : (pas de retour) avec un GET
 function callUrlGet(in_sUrl) {
  getXhr();
  xhr.open("GET",in_sUrl,true);
  xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
  xhr.send("x=x");
 }
	
 //Synchrone : Chargement d'une page en get dans un DIV
 function getSubFormGet(in_sForm, in_sUrl) {
  //Empty all
  var oXHR = getXhr();
  document.getElementById(in_sForm).innerHTML = "";
  //Define end function
  oXHR.onreadystatechange = function() {
   if (oXHR.readyState == 4 && oXHR.status == 200) {
    sResponse = oXHR.responseText;
    document.getElementById(in_sForm).innerHTML = sResponse;
   }
  }
  //Get data
  oXHR.open("GET",in_sUrl,true);
  oXHR.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
  oXHR.send("x=x");
 }
-->