function test(url){
		window.open(url,'TEST','menubar=0,status=0,scrollbars=1,resizable=1,width=680,height=600');
}

function verzenden(){
		if(document.myform.voornaam.value == ''){
			alert('U dient een voornaam op te geven!');
			document.myform.voornaam.focus();
			return false;
		} else if (document.myform.achternaam.value == ''){
			alert('U dient een achternaam op te geven!');
			document.myform.achternaam.focus();
			return false;
		} else if(!checkEmail(document.myform.email.value)) {
			alert("Een correct e-mail adres invullen a.u.b.");
			document.myform.email.focus();
			return false;
		} else {
			return true;	
		}
}

function checkEmail(str) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(str)){
		return true;
	} else {
		return false;
	}
}
