function valid_form(Langue)
{
	if (Langue == "fr") {
		if (IsEmpty(document.form.Nom,"Veuillez entrer votre nom")) return (false);
		if (IsEmpty(document.form.Prenom,"Veuillez entrer votre prénom")) return (false);
		if (IsEmpty(document.form.Courriel,"Veuillez entrer votre courriel")) return (false);
		if (!CheckEmail(document.form.Courriel,"Votre courriel")) return(false);
		if (IsEmpty(document.form.Commentaire,"Veuillez entrer votre question ou vos commentaires")) return (false);
	} else {
		if (IsEmpty(document.form.Prenom,"Please enter your first name")) return (false);
		if (IsEmpty(document.form.Nom,"Please enter your last name")) return (false);
		if (IsEmpty(document.form.Courriel,"Please enter your e-mail address")) return (false);
		if (!CheckEmail(document.form.Courriel,"Your e-mail")) return(false);
		if (IsEmpty(document.form.Commentaire,"Please enter your question or comments")) return (false);		
	}
	return(true);
}