// JavaScript Document

function verif_formulaire()
{
 if(document.formulaire.nom.value == "")  {
   alert("Veuillez entrer votre nom!");
   document.formulaire.nom.focus();
   return false;
  }
  
   if(document.formulaire.societe.value == "")  {
   alert("Veuillez entrer votre societe!");
   document.formulaire.societe.focus();
   return false;
  }
  
  
  
   if(document.formulaire.poste.value == "")  {
   alert("Veuillez entrer votre Poste occupé!");
   document.formulaire.poste.focus();
   return false;
  }
  
  
 
  
  
  
  
   if(document.formulaire.email.value == "")  {
   alert("Veuillez entrer votre Email!");
   document.formulaire.email.focus();
   return false;
  }
  
  
   if(document.formulaire.tel.value == "")  {
   alert("Veuillez entrer votre tel!");
   document.formulaire.tel.focus();
   return false;
  }
  
  
  
   
  
    if(document.formulaire.qremarques.value == "")  {
   alert("Veuillez entrer vos QUESTIONS / REMARQUE!!!!");
   document.formulaire.qremarques.focus();
   return false;
  }
  
  
  
}

function verif_log_commander()
{
 if(document.log_commander.login.value == "")  {
   alert("Veuillez entrer votre Login!");
   document.log_commander.login.focus();
   return false;
  }
 
  
    if(document.log_commander.pass.value == "")  {
   alert("Veuillez entrer votre password!");
   document.log_commander.pass.focus();
   return false;
  }
  
   
 
}


function verif_candidature()
{
	
	if(document.candidature.produit.value == "")  {
   alert("Veuillez entrer votre Votre sélection produit !");
   document.candidature.produit.focus();
   return false;
  }
 
 
 
 if(document.candidature.nom.value == "")  {
   alert("Veuillez entrer votre nom!");
   document.candidature.nom.focus();
   return false;
  }
 
 
  
    if(document.candidature.email.value == "")  {
   alert("Veuillez entrer votre email!");
   document.candidature.email.focus();
   return false;
  }
  
   
 
}

function verif_espaceclient()
{
	
 if(document.form_inscription.nom.value == "")  {
   alert("Veuillez entrer votre nom!");
   document.form_inscription.nom.focus();
   return false;
  }
 
 
  
    if(document.form_inscription.mail.value == "")  {
   alert("Veuillez entrer votre email!");
   document.form_inscription.mail.focus();
   return false;
  }
  
   
   
   	if(document.form_inscription.login.value == "")  {
   alert("Veuillez entrer votre login !");
   document.form_inscription.login.focus();
   return false;
  }
  
  
   	if(document.form_inscription.pass.value == "")  {
   alert("Veuillez entrer votre pass !");
   document.form_inscription.pass.focus();
   return false;
  }
 
  	if(document.form_inscription.passe2.value == "")  {
   alert("Veuillez entrer Confirmer votre mot de passe !");
   document.form_inscription.passe2.focus();
   return false;
  }
 
 
 if(document.form_inscription.passe2.value != document.form_inscription.pass.value)  {
   alert("Erreur  mot de passe !");
   document.form_inscription.passe2.focus();
   document.form_inscription.pass.focus();
   return false;
  }
 
 
}








