// JavaScript Document


<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function checkEmail(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.emailadres.value)){
return (true)
}
alert("Het door u ingevulde e-mailadres is onjuist. Probeert u het nog eens.")
return (false)
}

