function getHTTPObject(idachat)
{

	if(window.XMLHttpRequest) // Firefox et autres
	   xmlhttp = new XMLHttpRequest();
	else if(window.ActiveXObject){ // Internet Explorer
	   try {
                xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
            } catch (e) {
                xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
            }
	}
	else { // XMLHttpRequest non supporté par le navigateur
	   alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
	   xmlhttp = false;
	}

/*
  var xmlhttp = false;
  if (!xmlhttp && typeof XMLHttpRequest != 'undefined')
  {
     try
     {
        xmlhttp = new XMLHttpRequest();
     }
     catch (e)
     {
        xmlhttp = false;
     }
  }
*/

  if (xmlhttp)
  {
     xmlhttp.onreadystatechange=function()
     {
        if (xmlhttp.readyState == 4) /* 4 : état "complete" */
        {
           if (xmlhttp.status == 200) /* 200 : code HTTP pour OK */
           {
              update_display(xmlhttp.responseText,idachat);
           }
        }
     }
  }
  return xmlhttp;
}

function update_display(response,idachat) {
  box=document.getElementById('detail_'+idachat);
  box.innerHTML=response;
}

function afficheDetailPrestation(idachat)
{
  var url = "http://fo.recrut/ajax/brh_detail_prestation.php?id="+idachat;
  http = getHTTPObject(idachat);
  http.open("GET", url, true);
  http.send(null);
}
