	function afficher(){
		document.getElementById('login').style.display='block';
	}
	
	function cacher() {
		action="document.getElementById('login').style.display='none'";
		t=setTimeout(action,1000);
	}
	
	function stopper() { clearTimeout(t);  }