<!--

function check_form (theform) {

	if(theform.bedrijf.value == "") {
		theform.bedrijf.focus();
		alert("Gelieve een instelling/bedrijf in te vullen.");
		return false;
	}
	
	if(theform.functie.value == "") {
		theform.functie.focus();
		alert("Gelieve uw functie in te vullen.");
		return false;
	}
	
	if(theform.adres.value == "") {
		theform.adres.focus();
		alert("Gelieve uw adres in te vullen.");
		return false;
	}
	
	if(theform.gemeente.value == "") {
		theform.gemeente.focus();
		alert("Gelieve uw gemeente en postcode in te vullen.");
		return false;
	}
	
	if(theform.land.value == "") {
		theform.land.focus();
		alert("Gelieve uw land in te vullen.");
		return false;
	}
	
	if(theform.tel.value == "") {
		theform.tel.focus();
		alert("Gelieve uw telefoon in te vullen.");
		return false;
	}
	
	if(theform.email.value == "") {
		theform.email.focus();
		alert("Gelieve uw e-mail in te vullen.");
		return false;
	}
	
	return true;
	
}

//-->
