function verif_form() {

	if (document.getElementById('contactform').Nom.value=="") {
		alert("Vous n'avez pas rempli le champ Nom");
		document.getElementById('contactform').Nom.focus();
		document.getElementById('contactform').Nom.style.borderColor = "#005200";
		return false;
	}

	if (document.getElementById('contactform').Adresse.value=="") {
		alert("Vous n'avez pas rempli le champ Adresse");
		document.getElementById('contactform').Adresse.focus();
		document.getElementById('contactform').Adresse.style.borderColor = "#005200";
		return false;
	}

	if (document.getElementById('contactform').Code_postal.value=="") {
		alert("Vous n'avez pas rempli le champ Code Postal");
		document.getElementById('contactform').Code_postal.focus();
		document.getElementById('contactform').Code_postal.style.borderColor = "#005200";
		return false;
	}

	if (document.getElementById('contactform').Ville.value=="") {
		alert("Vous n'avez pas rempli le champ Ville");
		document.getElementById('contactform').Ville.focus();
		document.getElementById('contactform').Ville.style.borderColor = "#005200";
		return false;
	}

	if (document.getElementById('contactform').Email.value=="") {
		alert("Vous n'avez pas rempli le champ E-mail");
		document.getElementById('contactform').Email.focus();
		document.getElementById('contactform').Email.style.borderColor = "#005200";
		return false;
	}

	if (document.getElementById('contactform').Email.value.indexOf('@')==-1 || document.getElementById('contactform').Email.value.indexOf('.')==-1) {
		alert("Votre adresse e-mail n'est pas valide");
		document.getElementById('contactform').Email.focus();
		document.getElementById('contactform').Email.style.borderColor = "#005200";
		return false;
	}

	if (document.getElementById('contactform').Message.value=="") {
		alert("Vous n'avez pas rempli le champ Message");
		document.getElementById('contactform').Message.focus();
		document.getElementById('contactform').Message.style.borderColor = "#005200";
		return false;
	}

	document.getElementById('contactform').Submit.disabled = true;
	document.body.style.cursor = 'wait';

	return true;

}
