function checkMesCinemas() {
	var cookie = getCookie('mescinemas');

	if (!cookie)
	{
		window.document.location.href = "/divertissement/cinema/mes_cinemas_liste.html";
	}
	else
	{
		window.document.location.href = "/divertissement/cinema/cgi-bin/mes_cinemas/mes_cinemas.cgi?cinema="+ cookie;
	}
}