function rediriger(url, delai) {
	setTimeout("goTo('"+url+"')",delai) ;
}

function goTo(url){
	document.location.href = url;
}
