function selection_personnalisee()
{
		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_goto_selection_perso(xhr); };
		
		lien="../../js/selection_personnalisee.php";
		
		xhr.open("GET", lien, true);		
		xhr.send(null);
}

function alert_ajax_goto_selection_perso(xhr)
{
    if (xhr.readyState==4) 
    {    	
		if (document.getElementById)
		{
			reponse = xhr.responseText;
			document.getElementById("selection_personnalisee").innerHTML = reponse;
		}
		else if (document.all) 
		{
			reponse = xhr.responseText;
			document.all["selection_personnalisee"].innerHTML = reponse;
		}		
    }
	else {
		var aff = 'Chargement... ';
		if (document.getElementById)
		{
			document.getElementById("selection_personnalisee").innerHTML = aff;
		}
		else if (document.all) 
		{
			document.all["selection_personnalisee"].innerHTML = aff;
		}		
	}
}