function runFlash(movie, width, height) {
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'">');
  document.write('<param name="movie" value="'+movie+'">');
  document.write('<param name="quality" value="high"><param name="bgcolor" value="#016FA2" />');
  document.write('<embed src="'+movie+'" quality="high" bgcolor="#016FA2" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>');
  document.write('</object>');
}

datum= new Date();
maand=datum.getMonth();
dag=datum.getDate();

function zetDatum() {
	document.f.month.options[maand].selected = true;
	document.f.day.options[dag-1].selected = true;
}
function verzend() {
	if (document.f.realname.value=="" || document.f.email.value=="") {
		alert("Please fill in your name, emailaddress and telephone number");
		return false;
	} else if (document.f.email.value.indexOf("@")==-1) {
		alert("Please fill in a correct emailaddress");
		document.f.email.focus();
		return false;
	} else {
		document.f.submit();
		obj = document.getElementById("formuliercontainer");
		obj.innerHTML="<div class=\"dank\">Thank you for your reservation.<br>We will contact you as soon as possible to confirm the reservation.<br></div";	
	}
	return true;
}
