		function clubLogin(){
			alert('ttt');
			/*
			var pform = document.pform;
			alert("pform is " + pform);
			if (pform.login.value.length == 0){
					alert('Veuillez saisir votre identifiant');
					pform.login.focus();
					return;
			}
			if (pform.pwd.value.length == 0){
					alert('Veuillez saisir votre mot de passe');
					pform.pwd.focus();
					return;
			}
			*/
		}
		
	function isGoodEmail(email){
			if (email.length == 0)
				return false;
			comps = email.split('@');
			if (comps.length != 2)
				return false;
			comps = comps[1].split('.');
			if (comps.length < 2)
				return false;
			return true;			
		}	
			