function chsingle(adu,enf){
try {xhrdps=new XMLHttpRequest();}
	catch(e){
		try {xhrdps=new ActiveXObject("Microsoft.XMLHTTP");}
			catch(e1){
				alert("Objet non supporté");
			}
	}
xhrdps.onreadystatechange=function(){
	if (xhrdps.readyState==4)
		document.getElementById("chsingle").innerHTML=xhrdps.responseText;
	else 
		document.getElementById("chsingle").innerHTML="<font size='1'>Patientez svp...</font>";
		}
xhrdps.open('post','chsingle.php',true);
xhrdps.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
//xhr.send(null);
xhrdps.send("enf="+enf+"&adu="+adu);

}

