// Verification du formulaire contact
function champsok()
{
if (
(document.form.nom.value.length == 0) ||
(document.form.nom.value == ' NOM*') ||
(document.form.prenom.value.length == 0) ||
(document.form.prenom.value == ' PRENOM*') ||
(document.form.tel.value.length == 0) ||
(document.form.tel.value == ' TELEPHONE*') ||
(document.form.email.value.length == 0) ||
(document.form.email.value == ' EMAIL*') ||
(document.form.depart_date.value.length == 0) ||
(document.form.depart_date.value == ' DATE DE DEPART*') ||
(document.form.depart_heure.value.length == 0) ||
(document.form.depart_heure.value == ' HEURE DE DEPART*') ||
(document.form.depart_adresse.value.length == 0) ||
(document.form.depart_adresse.value == ' N&deg; ET RUE OU HALL D\'AEROPORT*') ||
(document.form.depart_ville.value.length == 0) ||
(document.form.depart_ville.value == ' VILLE, CODE POSTAL, AEROPORT, OU GARE *') ||
(document.form.arrivee_adresse.value.length == 0) ||
(document.form.arrivee_adresse.value == ' N&deg; ET RUE OU HALL D\'AEROPORT*') ||
(document.form.arrivee_ville.value.length == 0) ||
(document.form.arrivee_ville.value == ' VILLE, CODE POSTAL, AEROPORT, OU GARE *')
)
{alert("Merci de remplir tous les champs marqués d'un *");return false;}

if (
document.form.email.value != document.form.confirmationemail.value
)
{alert("Email et Confirmation Email doivent être identiques");return false;}

document.form.submit();
}


