function verif(){
	if (IsEmpty(document.getElementById("nom").value)){
		jAlert("le champs 'nom' est un champs obligatoire.","attention")
		document.getElementById("nom").focus();
		return false;
	}
	if (!(IsMail(document.getElementById("email").value))){
		jAlert("le champ 'adresse mail' est vide ou incorrecte.","attention")
		document.getElementById("email").focus();
		return false;
	}
	if (IsEmpty(document.getElementById("message").value)){
		jAlert("le champ 'message' est un champ obligatoire.","attention")
		document.getElementById("message").focus();
		return false;
	}
	if (IsEmpty(document.getElementById("pays").value)){
		jAlert("le champ 'pays' est un champ obligatoire.","attention")
		document.getElementById("pays").focus();
		return false;
	}
	if (IsEmpty(document.getElementById("pfw_security_code").value)){
		jAlert("le champ 'code' est un champ obligatoire.","attention")
		document.getElementById("pfw_security_code").focus();
		return false;
	}
	
	
	return true;
}

