// Copyright © 2004 EyeForYou
// Created by EyeForYou

<!--
// ------ CHECH FORM ------

function validate(){
if (document.dsaconcept.Naam.value=="") {
alert("Nicht alle Pflichtfelder sind ausgefüllt: Name")
return false
}
if (document.dsaconcept.Titel.value=="") {
alert("NNicht alle Pflichtfelder sind ausgefüllt: Titel")
return false
}
if (document.dsaconcept.Straat.value=="") {
alert("Nicht alle Pflichtfelder sind ausgefüllt: Strasse")
return false
}
if (document.dsaconcept.Plaats.value=="") {
alert("Nicht alle Pflichtfelder sind ausgefüllt: Ort")
return false
}
if (document.dsaconcept.Postcode.value=="") {
alert("Nicht alle Pflichtfelder sind ausgefüllt: PLZ")
return false
}
if (document.dsaconcept.Land.value=="") {
alert("Nicht alle Pflichtfelder sind ausgefüllt: Land")
return false
}
if (document.dsaconcept.Telefoon.value=="") {
alert("Nicht alle Pflichtfelder sind ausgefüllt: Telefon")
return false
}
if (document.dsaconcept.Email.value=="") {
alert("Nicht alle Pflichtfelder sind ausgefüllt: E-Mail")
return false
}
return true
}
//-->

 