//************************************************
// 
//
// Form validation
//
//************************************************


//************************************************
// checkForm()
//************************************************
function checkForm() {
	
	// EMAIL
	if (!checkEmail(document.contact.EMAIL.value)) {return false;}
	
	// FIRSTNAME
	if (document.contact.FIRSTNAME.value.length == 0) {
		alert("Veuillez entrer votre prénom.");
		return false;
	}
	
	// LASTNAME
	if (document.contact.LASTNAME.value.length == 0) {
		alert("Veuillez entrer votre nom.");
		return false;
	}
	
	// COMMENT
	if (document.contact.REGION.value.length == 0) {
		alert("Veuillez indiquer votre région.");
		return false;
	}
	
	// COMMENT
	if (document.contact.COMMENT.value.length == 0) {
		alert("Veuillez entrer un message.");
		return false;
	}
	
	// PHONE
	PHONE_HOME = document.contact.PHONE_HOME.value;
	PHONE_WORK = document.contact.PHONE_WORK.value;
	PHONE_CELL = document.contact.PHONE_CELL.value;
	if (PHONE_HOME.length == 0 && PHONE_WORK.length == 0 && PHONE_CELL.length == 0) {
		alert("Veuillez indiquer un numéro de téléphone.");
		return false;
	}
	
	// Submit form
	//document.contact.submit();
	
} // checkForm


//************************************************
// checkEmail()
//************************************************
function checkEmail(VAL) {
	
	if (VAL.length == 0) {
		alert("Veuillez entrer votre adresse email.");
		return false;
	}
	
	if (VAL.indexOf("@") == -1) {
		alert("Veuillez entrer une adresse email valide.");
		return false;
	}
	
	return true;
	
} // checkEmail