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

		
    return true;
  }