function disableForm(theform) {
if (document.all || document.getElementById) {
for (i = 0; i < theform.length; i++) {
var tempobj = theform.elements[i];
if (tempobj.type.toLowerCase() == "submit" || tempobj.type.toLowerCase() == "reset")
tempobj.disabled = true;
}
setTimeout('alert("de informatie wordt nu opgeslagen in de database. Een ogenblik geduld a.u.b..")', 4000);
return true;
}
else {
alert("uw aanvraag wordt verwerkt.");
return false;
   }
}

function controle(){		
if(contact.voor.value == "") {
		alert('Vul uw voornaam/voorletters in aub.');
		return false;
	}
	if(contact.naam.value == "") {
		alert('Vul uw achternaam in aub.');
		return false;
	}

		if(contact.huisnr.value == "") {
		alert('Vul uw huisnummer in aub.');
		return false;
	}
	if(contact.postc.value == "") {
		alert('Vul uw postcode in aub.');
		return false;
	}

			if(contact.email.value == "" || contact.email.value.indexOf('@') == -1 ||contact.email.value.indexOf('.') == -1) {
		alert('Vul een geldig e-mailadres in aub.');
		return false;
	
	}

		if(contact.tela.value == -1) {
		alert('Vul aub uw telefoonnummer in.');
		return false;
	
	}
	
	
	return true;
}

