function ajax_cgv (id, id_langues)
{

    var xhr=null;
    
    if (window.XMLHttpRequest) { 
        xhr = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) 
    {
        xhr = new ActiveXObject("Microsoft.XMLHTTP");
    }
    //on définit l'appel de la fonction au retour serveur
    xhr.onreadystatechange = function() { alert_ajax_cgv(xhr); };
    
    //on affiche le message d'acceuil
  
    //on appelle le fichier reponse.txt
    xhr.open("GET", "http://www.villathalgo.com/php/detailsCgv.php?id="+id+"&id_langues="+id_langues, true);
    xhr.send(null);
}

function alert_ajax_cgv(xhr)
{
	
    if (xhr.readyState==4) 
    {
document.getElementById("affichagecgv").innerHTML = xhr.responseText;	
	}

}



