function mail_Validator(theForm)
{

  if (theForm.nom.value == "")
  {
    alert("Tapez une valeur pour le champ \"nom\".");
    theForm.nom.focus();
    return (false);
  }

  if (theForm.telephone.value == "")
  {
    alert("Tapez une valeur pour le champ \"telephone\".");
    theForm.telephone.focus();
    return (false);
  }

  if (theForm.mail.value == "")
  {
    alert("Tapez une valeur pour le champ \"email\".");
    theForm.email.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒŽšœžŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþ0123456789-@-._";
  var checkStr = theForm.mail.value;
  var allValid = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Ne tapez que  lettre, chiffre et \"@-._\" caractères dans le champ \"email\".");
    theForm.email.focus();
    return (false);
  }

  /*if (theForm.commentaires.value == "")
  {
    alert("Merci de nous préciser l'objet de votre demande, afin que nous puissions répondre efficacement à votre demande.");
    theForm.commentaires.focus();
    return (false);
  }*/
  return (true);
}