
function formCheck() {
if (document.Form.naam.value=="") {
alert("Vul uw Naam in.");document.Form.naam.focus();return false
}
if (document.Form.adres.value=="") {
alert("Vul uw Adres in.");document.Form.adres.focus();return false
}
if (document.Form.pc.value=="") {
alert("Vul uw PC in.");document.Form.pc.focus();return false
}
if (document.Form.plaats.value=="") {
alert("Vul uw Woonplaats in.");document.Form.plaats.focus();return false
}
if (document.Form.telefoon.value=="") {
alert("Vul uw Telefoon-nummer in.");document.Form.telefoon.focus();return false
}
if (document.Form.email.value=="") 
{
alert("Vul uw E-mailadres in.");document.Form.email.focus();return false
}
if (document.Form.email.value!="") {
if (document.Form.email.value.indexOf("@")==-1 || document.Form.email.value.indexOf(".")==-1 || document.Form.email.value.indexOf(" ")!=-1 || document.Form.email.value.length<6) {
alert("Sorry, uw E-mail adres is niet correct.");document.Form.email.focus();return false
}
}
}

