function CheckForm() {
	if(!document.forms[0].login.value.length){
		alert('Champe Loigin est obligatoire !');
		return false;		
	}
	if(!document.forms[0].pass.value.length){
		alert('Champe Password est obligatoire !');
		return false;
	}
}
