//Check l'age
function checkAge()
{
	var result = GetCookie("adulte");
	if(result!= "yes" || result == null)
	{
		document.location = "/pre-home.html";
	}
}
checkAge();
