/*
	PILMO JAVASCRIPTS
	=========================================================
	(c)2005 MediaMonks ; Interactive Art, www.mediamonks.com
	=========================================================
*/

function isValid(theForm) {
	if (theForm.postcode.value == "") {
		alert("Vul aub uw postcode in");
		theForm.postcode.focus();
		return false;
	}

	if (theForm.huisnummer.value == "") {
		alert("Vul aub uw huisnummer in");
		theForm.huisnummer.focus();
		return false;
	}

	return true; // allow the submission
}

function submitform(theForm)
{
  document.getElementById(theForm).submit();
}
