// JavaScript Document


function CheckForm() {
	
	if (errorInputEmpty ("naam", "")) return false;
	if (errorInputEmpty ("voornaam", "")) return false;
	
	if (errorNoRadioChecked ("geslacht", "man of vrouw")) return false;
	
	// if (errorInputEmpty ("organisatie", "")) return false;
		
	if (errorInputEmpty ("adres", "")) return false;
	
	if (errorInputEmpty ("postcode", "")) return false;
	//if (errorPostcodeInvalid ("postcode", "")) return false;
	
	if (errorInputEmpty ("woonplaats", "")) return false;

	if (errorInputEmpty ("land", "")) return false;

	//if (errorInputEmpty ("mobiel", "")) return false;
	
	//if ( errorCondition ( (getInputValue ("mobiel").substring(0,2) != "06"), "mobiel", "Mobiel moet met 06 beginnen") ) return false;
	
	if (errorInputEmpty ("email", "e-mailadres")) return false;
	if (errorEmailInvalid ("email", "e-mailadres")) return false;
	if (errorInputEmpty ("telefoon", "telefoonnummer")) return false;
	
	if (errorInputEmpty ("aantal", "")) return false;
	
	if (errorNoRadioChecked ("betaling", "een betalings methode")) return false;
	
	
	return true;
}