﻿/*TELEPHONE*/
function getOptionsInscription(CLASSEMENT_ETABLISSEMENT){
	if (CLASSEMENT_ETABLISSEMENT!=""){
		var xhr_object = null;
		document.getElementById("OptionsInscription").innerHTML="<img src='/Images/Layout/wait.gif'>";
		if(window.XMLHttpRequest) // Firefox
			xhr_object = new XMLHttpRequest();
		else if(window.ActiveXObject) // Internet Explorer
			xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
		else { // XMLHttpRequest non supporté par le navigateur
			alert("ERROR");
			return;
		}

		xhr_object.open("POST", "/Functions/getOptionsInscription.php", true);
		var data =encodeURI("CLASSEMENT_ETABLISSEMENT="+CLASSEMENT_ETABLISSEMENT);
		xhr_object.onreadystatechange = function() {
			if(xhr_object.readyState == 4) {
				eval(xhr_object.responseText);
			}
		}
		//Send the proper header information along with the request
		xhr_object.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
		xhr_object.setRequestHeader("Content-length", data.length);
		xhr_object.setRequestHeader("Connection", "close");
		xhr_object.send(data);
	}
}

