// JavaScript Document

function Contact(){
			var Naam = document.ContactForm.Naam.value;
			var Email = document.ContactForm.Email.value;
			
			if(Naam != '' && Email != ''){
				document.ContactForm.submit();
			} else {
				alert('De velden met een * zijn verplicht');
			}
		}

function NieuwVensterE(URL) {
window.open(URL, "nieuw", "width=450,height=650,top=50,left=300");
}
