  function valider_form_coord(theForm) 
  {  
	  if (theForm.pNom.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pNom.focus();
			return false;
		}
		if (!isTexte(theForm.pNom.value))
		{
			alert("Format texte invalide !");
			theForm.pNom.focus();
			return false;
		}
		if (theForm.pPrenom.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pPrenom.focus();
			return false;
		}
		if (!isTexte(theForm.pPrenom.value))
		{
			alert("Format texte invalide !");
			theForm.pPrenom.focus();
			return false;
		}

		if (theForm.pAdresse.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pAdresse.focus();
			return false;
		}
		if (theForm.pCp.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pCp.focus();
			return false;
		}
		if ( !isNumeric(theForm.pCp.value) )
		{
			alert("Format numérique invalide !");
			theForm.pCp.focus();
			return false;
		}
		if (theForm.pVille.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pVille.focus();
			return false;
		}
		if (theForm.pTele.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pTele.focus();
			return false;
		}

		if (!isPhoneNumber(theForm.pTele.value))
		{
			alert("Numéro téléphone invalide !");
			theForm.pTele.focus();
			return false;
		}
		if (theForm.pEmail.value.length == 0)
		{
			alert("Les champs marqué * sont obligatoires !");
			theForm.pEmail.focus();
			return false;
		}
		if (!isValidMail(theForm.pEmail.value))
		{
			alert("Format mail invalide !");
			theForm.pEmail.focus();
			return false;
		}
		if (theForm.pCgv.checked==false)
		{
			alert("Vous devez accepter les conditions générales de ventes!");
			theForm.pCgv.focus();
			return false;
		}


    return true;
  }