function checkFormCongres()

{
var correct = true
if (document.mailFormCongres.Naam.value == "") {correct = false; alert("Voer aub uw naam in!")}
if (document.mailFormCongres.Adres.value == "") {correct = false; alert("Voer aub uw adres in!")}
if (document.mailFormCongres.Postcode.value == "") {correct = false; alert("Voer aub uw postcode in!")}
if (document.mailFormCongres.Plaats.value == "") {correct = false; alert("Voer aub een woonplaats in!")}
if (document.mailFormCongres.Telefoon.value == "") {correct = false; alert("Voer aub een telefoonnummer in!")}
if (document.mailFormCongres.Emailadres.value == "") {correct = false; alert("Voer aub een emailadres in!")}
if (document.mailFormCongres.Aantal.value == "") {correct = false; alert("Voer aub het aantal deelnemers in!")}

if (correct){alert("Bedankt voor het inschrijven!")

}
return correct 

}


//-->

