// JavaScript Document
function envois() 
{
  document.getElementById('mail').style.backgroundColor = "";
  document.getElementById('prenom').style.backgroundColor = "";
  document.getElementById('societe').style.backgroundColor = "";
  document.getElementById('nom').style.backgroundColor = "";
  document.getElementById('infos').style.color = "";
  ma = document.getElementById('mail').value;
  //alert(mail);
  pre = document.getElementById('prenom').value;
  soc = document.getElementById('societe').value;
  no = document.getElementById('nom').value;
  $.post("../traitements.php", { mail: ma, prenom: pre, societe: soc, nom: no },
     function(data){
      err(data);
     }, "json");
}
function err(data)
{
  if(data.infos == "no")
  { 
    document.getElementById('infos').style.color = "#00b3ff";
    document.getElementById('infos').style.fontFamily = "arial";
    document.getElementById('infos').style.fontWeight = "bold";
    document.getElementById('infos').innerHTML = data.message;
    if(data.champs == 'mail')
     {
        document.getElementById('mail').style.backgroundColor = "#00b3ff";
     }
    if(data.erreur)
    {
      for (i=0;i<data.erreur.length; i++)
      {
        document.getElementById(data.erreur[i]).style.backgroundColor = "#00b3ff";
      }
    }
  }else
  {
    document.getElementById('infos').style.fontFamily = "arial";
    //document.getElementById('infos').style.fontWeight = "bold";
    document.getElementById('infos').innerHTML = data.message;
    document.getElementById('formulaire').style.display = "none";

  //document.getElementById('infos').style.color = "#DC143C";
  }
}
