// JavaScript Document pour le contrôle des champs de la table client_alert
  function valider_form_client_alert(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.pChamp3.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pChamp3.focus();
			return false;
		}
		if (!isValidMail(theForm.pChamp3.value))
		{
			alert("Format mail invalide !");
			theForm.pChamp3.focus();
			return false;
		}
		if ( ! caseCochee() )
			return false;
    return true;
  }
