function verif(){
	var error = 0;
	if (document.contact.nom.value == ""){
		error = 1;
	}
	if (document.contact.prenom.value == ""){
		error = 1;
	}
	if (document.contact.adresse.value == ""){
		error = 1;
	}
	if (document.contact.cp.value == ""){
		error = 1;
	}
	if (document.contact.ville.value == ""){
		error = 1;
	}
	if (document.contact.email.value == ""){
		error = 1;
	}
	if (error == 0){
		document.contact.submit();
	}
	else {

		alert ("Merci de remplir tous les champs obligatoires");
	}
}