function check()
{
if (document.contact.naam.value.length==0)
	{
		alert("Uw naam is niet ingevuld");
		document.contact.naam.focus();
	}
		else if(document.contact.email.value.length==0 || document.contact.email.value.indexOf("@")==-1 || document.contact.email.value.indexOf(".")==-1 || document.contact.email.value.indexOf(" ")==0)
	{
		alert("Er is geen geldig emailadres ingevuld")
		document.contact.email.focus();
	}
<!-- 		else if(document.myform.Adres.value==0)
<!-- 	{
<!-- 	alert("Uw adres is niet ingevuld");
<!-- 	document.myform.Adres.focus();
<!-- 	}
	
<!-- 		else if(document.myform.Postcode.value==0)
<!-- 	{
<!-- 	alert("Uw postcode is niet ingevuld");
<!-- 	document.myform.Postcode.focus();
<!-- 	}
<!-- 	
<!-- 		else if(document.myform.Plaats.value==0)
<!-- 	{
<!-- 	alert("Uw plaats is niet ingevuld");
<!-- 	document.myform.Plaats.focus();
<!-- 	}
<!-- 	
<!-- 		else if(document.myform.Telefoon.value==0)
<!-- 	{
<!-- 	alert("Uw telefoonnummer is niet ingevuld");
<!-- 	document.myform.Telefoon.focus();
<!-- 	}
			
else if(document.contact.opmerking.value==0)
	{
	alert("Het opmerkingenveld is niet ingevuld");
	document.contact.opmerking.focus();
	}

else
	{
	document.contact.submit()
	}

}
