   
function resultat_sondage(id)
{
   var xhr; // création de l'instance de l'objet
   if (window.XMLHttpRequest) 
	xhr = new XMLHttpRequest();
    else if (window.ActiveXObject)
	xhr = new ActiveXObject('Microsoft.XMLHTTP');
    else
	{
	alert('JavaScript : votre navigateur ne supporte pas les objets XMLHttpRequest...');
    return;
    }		
		
    xhr.onreadystatechange = function() // définition de la fonction de traitement
    	{
   			 if (xhr.readyState == 4)
    		{
				
					
			

					div_result= document.getElementById("result"+id);
					document.getElementById("result"+id).style.marginRight="7px";
					document.getElementById("result"+id).innerHTML=(xhr.responseText);
	
				
			
			
			}
  	    }	
		if(document.getElementById("choix"+id+"1") && document.getElementById("choix"+id+"1").checked==1)
		{
		choix = document.getElementById("choix"+id+"1").value;
		}
		if(document.getElementById("choix"+id+"2")&& document.getElementById("choix"+id+"2").checked==1)
		{
		choix = document.getElementById("choix"+id+"2").value;
		}		
		if(document.getElementById("choix"+id+"3")&& document.getElementById("choix"+id+"3").checked==1)
		{
		choix = document.getElementById("choix"+id+"3").value;
		}
		if(document.getElementById("choix"+id+"4")&& document.getElementById("choix"+id+"4").checked==1)
		{
		choix = document.getElementById("choix"+id+"4").value;
		}
		if(document.getElementById("choix"+id+"5")&& document.getElementById("choix"+id+"5").checked==1)
		{
		choix = document.getElementById("choix"+id+"5").value;
		}
		if(document.getElementById("choix"+id+"6")&& document.getElementById("choix"+id+"6").checked==1)
		{
		choix = document.getElementById("choix"+id+"6").value;
		}
		

		
	 doc=document.location.pathname;

	if(doc=="/sondage/les-sondages.htm"){
	var na="verification.php";}else{var na="../sondage/verification.php";}

		xhr.open('POST',na,true); // ouverture de la connexion
		xhr.setRequestHeader('Content-type','application/x-www-form-urlencoded;charset=utf-8'); // en-tête HTTP important
xhr.send("choix="+choix+"&id="+id);
	

}


