// Begin JQuery rounded corner
$(document).ready(function(){
   $(".boxblue, .boxred, .boxyellow, .boxgreen").corner("10px");
});
// End JQuery rounded corner 


function verzend()
{
	if(document.frmOrder.txtVoorletters.value == "")
	{
		alert("U dient uw voorletters in te vullen");
		document.frmOrder.txtVoorletters.focus();
		return false;
	}
	if(document.frmOrder.txtNaam.value == "")
	{
		alert("U dient uw naam in te vullen");
		document.frmOrder.txtNaam.focus();
		return false;
	}
	if(document.frmOrder.txtAdres.value == "")
	{
		alert("U dient uw adres in te vullen");
		document.frmOrder.txtAdres.focus();
		return false;
	}
	if(document.frmOrder.txtPostcode.value == "")
	{
		alert("U dient uw postcode in te vullen");
		document.frmOrder.txtPostcode.focus();
		return false;
	}	
	if(document.frmOrder.txtPlaats.value == "")
	{
		alert("U dient uw plaatsnaam in te vullen");
		document.frmOrder.txtPlaats.focus();
		return false;
	}
	if(document.frmOrder.txtTelefoon.value == "")
	{
		alert("U dient uw telefoonnummer in te vullen");
		document.frmOrder.txtTelefoon.focus();
		return false;
	}

	document.frmOrder.btnSend.disabled = true;
	document.frmOrder.btnSend.value = "een moment geduld a.u.b";
	document.frmOrder.submit();
}


function sendForm()
{
	if(document.frmContact.inpNaam.value == "")
	{
		alert("U dient uw naam in te vullen");
		document.frmContact.inpNaam.focus();
		return false;
	}	
	if(document.frmContact.inpPlaats.value == "")
	{
		alert("U dient uw woonplaats in te vullen");
		document.frmContact.inpPlaats.focus();
		return false;
	}	
	if(document.frmContact.inpTelefoon.value == "")
	{
		alert("U dient uw telefoonnummer in te vullen");
		document.frmContact.inpTelefoon.focus();
		return false;
	}	
	if(document.frmContact.inpEmail.value == "")
	{
		alert("U dient uw e-mailadres in te vullen");
		document.frmContact.inpEmail.focus();
		return false;
	}

	if(document.frmContact.inpVraag.value == "")
	{
		alert("U dient een vraag of opmerking in te voeren");
		document.frmContact.inpVraag.focus();
		return false;
	}	
	
	document.frmContact.submit();
}


