function ControleMembre()
	{        
	
	if($("formContactTitre").value === "")
		{
		alert("Veuillez définir votre titre.");
		$("formContactTitre").focus();
		return false;
		}

	if($("formContactPrenom").value === "")
		{
		alert("Veuillez définir votre prénom.");
		$("formContactPrenom").focus();
		return false;
		}

	if($("formContactNom").value === "")
		{
		alert("Veuillez définir votre nom.");
		$("formContactNom").focus();
		return false;
		}
		
	if(isNaN($("formContactNPA").value) || $("formContactNPA").value.length < 4)
		{
		alert("Veuillez définir votre NPA avec 4 chiffres.");
		$("formContactNPA").focus();
		return false;
		}

	if($("formContactLocalite").value === "")
		{
		alert("Veuillez définir votre localité.");
		$("formContactLocalite").focus();
		return false;
		}

	if($("formContactTelephone").value === "")
		{
		alert("Veuillez définir votre téléphone.");
		$("formContactTelephone").focus();
		return false;
		}

	verifMail($("formContactEmail").value);
	  	if (testm === false)
			{
			alert("Veuillez entrer une adresse e-mail correcte.");
			$("formContactEmail").focus();
			return false;
			}
   
	if ($("formContactEmail").value != $("formContactEmail2").value)
		{
		$("formContactEmail2").focus();
		return false;
		}
		
	if($("formContactPaiement").value === "")
		{
		alert("Veuillez choisir un moyen de paiement.");
		$("formContactPaiement").focus();
		return false;
		}
	
	if($("formContactAntispam").value === "")
		{
		alert("Veuillez répondre à la question anti-spam.");
		$("formContactAntispam").focus();
		return false;
		}
		
	if(isNaN($("formContactAntispam").value))
		{
		alert("Veuillez répondre à la question anti-spam avec des chiffres uniquement.");
		$("formContactAntispam").focus();
		return false;
		}
	
	}