<!-- //

function Validator(contact)
{
  var error = "";

  if (contact.nom.value == "")
  {
    error += "Please fill in your name.\n";
  } 


  if (contact.prenom.value == "")
  {
    error += "Please fill in your first name.\n";
  }


  if (contact.adresse.value == "")
  {
    error += "Please fill in your address.\n";
  }


  if (contact.np.value == "")
  {
    error += "Please fill in your postal code.\n";
  }


  if (contact.lieu.value == "")
  {
    error += "Please fill in your city.\n";
  }


  if (contact.pays.options[0].selected == true)
  {
    error += "Please select your country.\n";
  } 


  if (contact.tel.value == "")
  {
    error += "Please fill in your phone number.\n";
  }

 
  if (contact.email.value == "")
  {
    error += "Please fill in your email address.\n";
  }
  if ((contact.email.value.indexOf ('@',0) == -1 ||
   contact.email.value.indexOf ('.',0) == -1) &&
   contact.email.value != "")
  {
    error += "Please verify that your email address is valid.\n";
  }  


  if (error != "")
  {
    alert(error);
    return (false);
  } else {
    return (true);
  } 

}
// -->