// JavaScript Document

function saveContact() {
	
	if(IsEmpty(document.F_CONTACT["contact[raison_sociale]"].value) == true){
		alert("Veuillez préciser votre société");
		document.F_CONTACT["contact[raison_sociale]"].focus();
		return false; 
	}
	
	if(IsEmpty(document.F_CONTACT["contact[nom]"].value) == true){
		alert("Veuillez préciser votre nom");
		document.F_CONTACT["contact[nom]"].focus();
		return false; 
	}

	if(IsEmpty(document.F_CONTACT["contact[prenom]"].value) == true){
		alert("Veuillez préciser votre prénom");
		document.F_CONTACT["contact[prenom]"].focus();
		return false; 
	}
	
	if(VerifEmail(document.F_CONTACT["contact[email]"]) == false) {
		return false;
	}
	
	document.F_CONTACT.job.value = "send_message";

}


