function rappelerContexte() { 
	for (i=0; i<=window.document.links.length-1;i++)
		{
		if (window.document.links[i].href==window.document.location.href || window.document.links[i].href==window.document.location.href.substring(0,window.document.location.href.indexOf('?')))
			{
			window.document.links[i].className+=' actif';
			}
		}
	}
function afficheRetourUtilisateur(message) {
	var p = document.getElementById("retourUtilisateur");
	p.innerHTML = message;
	p.className = 'visible';
	return true;
}