// Copyright © 2008 EyeForYou
// Created by EyeForYou

<!--
// ------ CHECH FORM ------

function validate(){
if (document.dsaconcept.Naam.value=="") {
alert("Not all the obligatory fields have been filled in: NAME")
return false
}
if (document.dsaconcept.Titel.value=="") {
alert("Not all the obligatory fields have been filled in: TITLE")
return false
}
if (document.dsaconcept.Straat.value=="") {
alert("Not all the obligatory fields have been filled in: STREET")
return false
}
if (document.dsaconcept.Plaats.value=="") {
alert("Not all the obligatory fields have been filled in: CITY")
return false
}
if (document.dsaconcept.Postcode.value=="") {
alert("Not all the obligatory fields have been filled in: POSTAL CODE")
return false
}
if (document.dsaconcept.Land.value=="") {
alert("Not all the obligatory fields have been filled in: COUNTRY")
return false
}
if (document.dsaconcept.Telefoon.value=="") {
alert("Not all the obligatory fields have been filled in: TELEPHONE")
return false
}
if (document.dsaconcept.Email.value=="") {
alert("Not all the obligatory fields have been filled in: E-MAIL")
return false
}
return true
}
//-->

 