
function Validation()
{
  // Validation du nom
  Longeur_Nom = document.form1.nom.value.length;
  if (Longeur_Nom <1)
  { alert("You must seize your Surname!");
    return false;
  }
  // Validation du prenom
  Longeur_Nom = document.form1.prenom.value.length;
  if (Longeur_Nom <1)
  { alert("You must seize your name!");
    return false;
  }
    // Validation du address
  Longeur_Nom = document.form1.address.value.length;
  if (Longeur_Nom <1)
  { alert("You must seize your adress!");
    return false;
  }
    // Validation du ville
  Longeur_Nom = document.form1.ville.value.length;
  if (Longeur_Nom <1)
  { alert("You must seize the name of your Town!");
    return false;
  }
   // Validation du pays
  Longeur_Nom = document.form1.pays.value.length;
  if (Longeur_Nom <1)
  { alert("You must seize the name of your country!");
    return false;
  }

// Validation du mail
  arobas = document.form1.email1.value.indexOf("@")
  point = document.form1.email1.value.indexOf(".", arobas)
  lastpoint = document.form1.email1.value.lastIndexOf(".")
  if ((arobas<1) || (point<arobas+2) ||
       ((lastpoint!=document.form1.email1.value.length-4) && (lastpoint!=document.form1.email1.value.length-3))
      )
  { alert("Incorrect Email !");
    return false; 
  }
    // Validation du voiture
  Longeur_Nom  = document.form1.voiture.value.length;
  if (Longeur_Nom <1)
  { alert("You must seize the vehicle type!");
    return false;
  }
  }