function removeFlashRightButtonMenu(){ // Disable the right click button on that flash object
	if (event.button == 2){ 
		parent.frames.location.replace('javascript:void(0)'); 
	} 
} 

function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
	newWindow = window.open(URLtoOpen, windowName, windowFeatures); 
}

function isValidEmail(str) {
	Email1 = /^\w+([\.\-]\w+)*\@\w+([\.\-]\w+)*\.\w+$/;
	Email2 = /^.*@[^_]*$/;
	return (Email1.test(str) && Email2.test(str));
}

function checkForm() {
	f = document.gastenboekForm;
	if(f.gastenboek_Naam.value == "") {
		alert("Naam niet ingevuld.");
		f.gastenboek_Naam.focus();
		return false;
	} else  if(f.gastenboek_Mailing.checked == true && !isValidEmail(f.gastenboek_Link.value)) {
		alert("Geen (geldig) e-mailadres ingevuld.");
		f.gastenboek_Link.focus();
		return false;
	} else {
		return true;	
	}
	return false;
}