
function CheckForm(){
    frm = document.forms[0];
    
	if(
	checkString(frm.EducationName, "Naam onderwijsinstelling") &&
	checkString(frm.Branche, "Sector") &&
	checkString(frm.StudyType, "Studierichting") &&
    checkBoxChecked(frm.Gender, "Heer \ Mevrouw") &&	
	checkString(frm.Initials, "Voorletters") &&
	checkString(frm.LastName, "Achternaam") &&
	checkOnlyDigits(frm.Phone,"Telefoon")&&
	checkEmail(frm.Email,"e-Mail")&&	
	checkString(frm.Address,"Adres bij bezoekadres")&&
	checkZipCode(frm.ZipCode,"Postcode bij bezoekadres")&&
	checkString(frm.City, "Plaats bij bezoekadres") &&
	checkBoxChecked(frm.FirstTime, "eerste kennismakingpresentatie") &&
	checkBoxChecked(frm.EducationPlan, "leerplan met behulp van leercoaching")
	) {
	    frm.action = "MeerWetenControleer.asp";
	    return true;
	}
	else{return false;}
}

function SendForm() {

    frm = document.forms[0];
    frm.action = "SubmitScript.asp";
    frm.submit();
}





