// JavaScript Document pour le contrôle des champs de la table client_alert
  function valider_form_mail_ecoute(theForm) 
  {  
  
		if (theForm.pChamp1.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pChamp1.focus();
			return false;
		}
		if (theForm.pChamp2.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pChamp2.focus();
			return false;
		}
		if (theForm.pChamp5.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pChamp5.focus();
			return false;
		}
		if (!isValidMail(theForm.pChamp5.value))
		{
			alert("Format mail invalide !");
			theForm.pChamp5.focus();
			return false;
		}
		if (theForm.pChamp6.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pChamp6.focus();
			return false;
		}

		
    return true;
  }
