//fontion javascript
	function ajoutOption(num){
		if(num < 10){
		var numero = num+1;
		document.getElementById("DivSelect"+numero+"").className = "visible";
		}else{
			alert("Vous avez choisis le maximum de race");
		}
	}
	
	function verifFormConnectEl(){
		log_util=document.getElementById("mail").value;
		mdp_util=document.getElementById("mdp").value;
		if(log_util.length==0){
			return false;	
		}
		
		if(mdp_util.length==0){
			return false;
		}
		return true;
	}
	
	function view(name){
		var divtab=document.getElementById("cont2").getElementsByTagName("div");
		for(i=0;i<divtab.length;i++){
			divtab[i].className="invisible";	
		}
		document.getElementById(name).className="visible";
	}
