// JavaScript Document

function sendCoordForm(nform){
	
	prenom = nform.prenom.value;
	nom = nform.nom.value;
	courriel = nform.courriel.value;
	sujet = nform.sujet.value;
	message = nform.message.value;
	nform.sent.value = 1;

	if ( (prenom == "") || (nom == "") || (courriel == "") || (courriel == "@") || (sujet == "") || (message == "")){
		window.alert("Fields with * are required !");
		return false;
	
	}else {
		nform.submit();
	}

}



function validNewsletter(nform) {
	var nom = nform.nom.value;
	var email = nform.courriel.value;
	
	if ((nom == "") || (email == "")){
		
	
			window.alert("Please enter your name and email!");
			return false;
		}
	
	}
  