function checkValues() {
	if (document.form1.textfield.value == "") {
		alert("Vul een trefwoord in")
		document.form1.textfield.focus()
	} else {
		document.form1.action = 'zoeken.asp'
		document.form1.submit()
	}
}

function checkValues2() {
	if (document.form2.bedrijf.value == "") {
		alert("U dient een bedrijfsnaam in te vullen.")
		document.form2.bedrijf.focus()
	} else if (document.form2.contactpersoon.value == "") {
		alert("U dient een contactpersoon in te vullen.")
		document.form2.contactpersoon.focus()
	} else if (document.form2.adres.value == "") {
		alert("U dient een adres in te vullen.")
		document.form2.adres.focus()
	} else if (document.form2.postcode.value == "") {
		alert("U dient een postcode in te vullen.")
		document.form2.postcode.focus()
	} else if (document.form2.plaats.value == "") {
		alert("U dient een plaats in te vullen.")
		document.form2.plaats.focus()
	} else if (document.form2.telefoon.value == "") {
		alert("U dient een telefoonnummer in te vullen.")
		document.form2.telefoon.focus()
	} else if (document.form2.email.value == "") {
		alert("U dient een e-mailadres in te vullen.")
		document.form2.email.focus()
	} else if (!checkEmail(document.form2.email.value)) {
		alert('Het e-mailadres is niet juist geschreven')
		document.form2.email.focus()
	} else if (document.form2.uwvraag.value == "") {
		alert("U dient een vraag in te vullen.")
		document.form2.uwvraag.focus()
	} else {
		document.form2.submit()
	}
}