function Form_validator_commande_direct(theForm)

{


    if (theForm.email.value == ""  || isMail (theForm.email.value) != true)
  {
    alert("Veuillez saisir une adresse email valide !");
    theForm.email.focus();
    return (false);
  } 
    
    if (theForm.nomprenom.value == "")
  {
    alert("Veuillez mentionner votre nom et prénom !");
    theForm.nomprenom.focus();
    return (false);
  }

    if (theForm.rue.value == "")
  {
    alert("Veuillez mentionner votre rue !");
    theForm.rue.focus();
    return (false);
  }  

    if (theForm.codepostal.value == "")
  {
    alert("Veuillez mentionner votre code postal !");
    theForm.codepostal.focus();
    return (false);
  }  

    if (theForm.ville.value == "")
  {
    alert("Veuillez mentionner votre ville !");
    theForm.ville.focus();
	return (false);
  }
  
      if (theForm.pays.value == "")
  {
    alert("Veuillez mentionner votre pays !");
    theForm.pays.focus();
	return (false);
  } 

return (true);
}



function Form_valid_commande_postale(theForm)

{

    if (theForm.email.value == ""  || isMail (theForm.email.value) != true)
  {
    alert("Veuillez saisir une adresse email valide !");
    theForm.email.focus();
    return (false);
  } 
  
   if (theForm.nomprenom.value == "")
  {
    alert("Veuillez mentionner votre nom et prénom !");
    theForm.nomprenom.focus();
    return (false);
  }

    if (theForm.rue.value == "")
  {
    alert("Veuillez mentionner votre rue !");
    theForm.rue.focus();
    return (false);
  }  

    if (theForm.code.value == "")
  {
    alert("Veuillez mentionner votre code postal !");
    theForm.code.focus();
    return (false);
  }  

    if (theForm.ville.value == "")
  {
    alert("Veuillez mentionner votre ville !");
    theForm.ville.focus();
	return (false);
  }
  
    if (theForm.pays.value == "")
  {
    alert("Veuillez mentionner votre pays !");
    theForm.pays.focus();
	return (false);
  } 

return (true);
}