<!--Begin (Forms:Advies/PensioenTest)
function formCheck() {
if (document.Form.naam.value=="") {
alert("Vul uw Naam in.");document.Form.naam.focus();return false
}
if (document.Form.telefoon.value=="") {
alert("Vul uw Telefoonnummer in.");document.Form.telefoon.focus();return false
}
if (document.Form.mail.value=="") 
{
alert("Vul uw E-mailadres in.");document.Form.mail.focus();return false
}
if (document.Form.mail.value!="") {
if (document.Form.mail.value.indexOf("@")==-1 || document.Form.mail.value.indexOf(".")==-1 || document.Form.mail.value.indexOf(" ")!=-1 || document.Form.mail.value.length<6) {
alert("Sorry, uw E-mail adres is niet correct.");document.Form.mail.focus();return false
}
}
if (document.Form.opmerkingen_klant.value=="") {
alert("Vul uw Vraag in.");document.Form.opmerkingen_klant.focus();return false
}
// End -->
}
