// JavaScript Document
function champ() {
	if (document.form1.frm_nom.value.length == 0) {
		alert("Veuillez introduire votre nom. Merci");
		document.form1.frm_nom.focus();
		return false;	
	}
	if ((document.form1.frm_email.value.length == 0) || (document.form1.frm_email.value.indexOf('@',0)==-1) || (document.form1.frm_email.value.indexOf('.',0)==-1)) {
		alert("Veuillez introduire votre e-mail. Merci");
		document.form1.frm_email.focus();
		return false;	
	}
}

function champ_nl() {
	if (document.form1.frm_nom.value.length == 0) {
		alert("Gelieve de naam van de contactpersoon op te geven. Bedankt.");
		document.form1.frm_nom.focus();
		return false;	
	}
	if ((document.form1.frm_email.value.length == 0)  || (document.form1.frm_email.value.indexOf('@',0)==-1) || (document.form1.frm_email.value.indexOf('.',0)==-1)) {
		alert("Gelieve een e-mailadres op te geven. Bedankt.");
		document.form1.frm_email.focus();
		return false;	
	}
}

