// 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("Les champs marqués d'un * sont obligatoires !");
		return false;
	
	}else {
		nform.submit();
	}

}

function sendCoordForm2(nform){
	
	nom = nform.nom.value;
	courriel = nform.courriel.value;
	phone = nform.phone.value;
	estimationdepart = nform.estimationdepart.value;
	typedeservice = nform.typedeservice.value;
	commentairevolume = nform.commentairevolume.value;
	paysorigine = nform.paysorigine.value;
	provinceorigine = nform.provinceorigine.value;
	villeorigine = nform.villeorigine.value;
	paysdestination = nform.paysdestination.value;
	provincedestination = nform.provincedestination.value;
	villedestination = nform.villedestination.value;
	commentaire = nform.commentaire.value;
	nform.sent.value = 1;

	if ( (nom == "") || (phone == "") ||(estimationdepart == "") ||(paysorigine == "") ||(villeorigine == "") ||(paysdestination == "") ||(villedestination == "")||  (courriel == "") || (courriel == "@")){
		window.alert("Les champs marqués d'un * sont obligatoires !");
		return false;
	
	}else {
		nform.submit();
	}

}
 
