function getXhr()
{
	var xhr = null; 
	if(window.XMLHttpRequest) xhr = new XMLHttpRequest(); // Firefox et autres
	else if(window.ActiveXObject) // Internet Explorer 
	{
		try
		{
			xhr = new ActiveXObject("Msxml2.XMLHTTP");
		} 
		catch (e) 
		{
			xhr = new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	else location.href = 'https://www.cabinet-roux.com/adminCabRoux';

	return xhr
}

function fermer(id) { document.getElementById(id).style.display = "none"; }
function ouvrir(id) 
{ 
	document.getElementById(id).style.display = "block";
	document.getElementById("token").value = "token";
	
	var xhr = getXhr()
	xhr.onreadystatechange = function()
	{
		if(xhr.readyState == 4)
		{
			if(xhr.status == 200) document.getElementById("token").value = xhr.responseText;
			else location.href = 'https://www.cabinet-roux.com/adminCabRoux';
		}
	}
	xhr.open("GET","donne_jeton.php",true);
	xhr.send(null);
}
