function Validator(theForm)
{

  if (theForm.account.value == "")
  {
    alert("S.V.P. inscrire votre numéro de compte.");
    theForm.account.focus();
    return (false);
  }

  if (theForm.account.value.length < 6)
  {
    alert("S.V.P. inscrire les 6 caractères de votre numéro de compte");
    theForm.account.focus();
    return (false);
  }

  if (theForm.email0.value == "")
  {
    alert("S.V.P. inscrire votre adresse de courriel pour la facturation automatisée");
    theForm.email0.focus();
    return (false);
  }

  if (theForm.email0.value.length < 6)
  {
    alert("S.V.P. inscrire les 6 caractères de votre adresse de courriel pour la facturation automatisée");
    theForm.email0.focus();
    return (false);
  }
if (theForm.email.value == "")
  {
    alert("S.V.P. confirmez votre adresse de courriel");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length < 6)
  {
    alert("S.V.P. confirmez les 6 caractères de votre adresse de courriel");
    theForm.email.focus();
    return (false);
  }

  if (theForm.phone.value == "")
  {
    alert("S.V.P. inscrire votre numéro de téléphone");
    theForm.phone.focus();
    return (false);
  }

  if (theForm.phone.value.length < 10)
  {
    alert("S.V.P. inscrire votre code régional et votre numéro de téléphone");
    theForm.phone.focus();
    return (false);
  }

  if (theForm.companyname.value == "")
  {
    alert("S.V.P. inscrire le nom de votre compagnie");
    theForm.companyname.focus();
    return (false);
  }

  if (theForm.companyname.value.length < 1)
  {
    alert("S.V.P. inscrire le nom de votre compagnie");
    theForm.companyname.focus();
    return (false);
  }

  if (theForm.contact.value == "")
  {
    alert("S.V.P. inscrire de la personne à contacter");
    theForm.contact.focus();
    return (false);
  }

  if (theForm.contact.value.length < 1)
  {
    alert("S.V.P. inscrire de la personne à contacter");
    theForm.contact.focus();
    return (false);
  }
  return (true);
}