function verifForm(){
	var message="";

	//Civilité
	if ((!document.frmform.civilite[0].checked)&&(!document.frmform.civilite[1].checked)&&(!document.frmform.civilite[2].checked)){
		message += "Please fill the field CIVILITY.\n";
	}		

	// Nom
	if (document.frmform.nom.value.length < 1){
		message += "Please fill the field LAST NAME.\n";
	}

	// Prénom	
	if (document.frmform.prenom.value.length < 1){
		message += "Please fill the field FIRST NAME.\n";
	}

	// Societe
	if (document.frmform.societe.value.length < 1){
		message += "Please fill the field COMPANY.\n";
	}

	// Adresse
	if (document.frmform.adresse.value.length < 1){
		message += "Please fill the field ADDRESS.\n";
	}

	// Code postal
	if (document.frmform.cp.value.length < 1){
		message += "Please fill the field ZIP CODE.\n";
	}

	// Ville
	if (document.frmform.ville.value.length < 1){
		message += "Please fill the field CITY.\n";
	}

	// Pays
	if (document.frmform.pays.options[document.frmform.pays.selectedIndex].value == 0){
		message += "Please fill the field COUNTRY.\n";
	}
	
	// Telephone
	if (document.frmform.tel.value.length < 1){
		message += "Please fill the field PHONE.\n";
	}
	
	// Email
	var mail = document.frmform.email.value;
	//if (mail.length < 1){
		//message += "Veuillez renseigner le champ EMAIL.\n";
	//}
	if (mail.length > 1){
		mail2 = mail.split("@");
		mail3 = mail.split(".");
		if (mail2.length != 2 || mail3.length < 2 || mail2[0] == "" || mail2[1] == "" || mail3[0] == "" || mail3[1] == "" || mail.indexOf(" ") != -1){
			message += "The EMAIL address is incorrect.\n";
		}
	}

	// Action
	if (message != ""){
		message += "\n\nThanks.";
		alert(message);
		return message;
	}else{
		//document.frmform.submit();
		return message;
	}
}