// JavaScript Document

function changePays(id)
{
  var xhr=null;
    
    if (window.XMLHttpRequest) { 
        xhr = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) 
    {
    xhr = new ActiveXObject("Microsoft.XMLHTTP");
    }

    xhr.onreadystatechange = function() {
		alert_changePays(xhr);
		};
		var url_courante = document.location;
	var donnees = "";
	donnees += "&id="+id;
	donnees += "&url="+url_courante;
 
    xhr.open("GET", chemin+"/php/changePays.php?id="+id+"&url="+url_courante, true);
	
	xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded; charset=UTF-8');
	
    xhr.send(donnees);
}

function alert_changePays(xhr){
	if (xhr.readyState==4) 
    {
		
		document.location.href = xhr.responseText;
//document.location.href = chemin+"/";
//location.reload();
	}
}

function changePaysCombo(){

	var idPays = document.getElementById('pays').value
	if(idPays != 0){
changePays(idPays);	
	}
}