<!-- Text - Change font Size
function setCookie(name, value) {
	//var curCookie = name + "=" + escape(value) + "; expires=Wed, 07-Jun-2023 11:07:25 GMT; path=/; domain=.nl";
	var curCookie = name + "=" + escape(value) + "; expires=Wed, 07-Jun-2023 11:07:25 GMT;";
	document.cookie = curCookie;
	self.location.href = self.location.href;
	//window.location.href = window.location.href;
	}

function setFontCookie(name, value) {
	//var curCookie = name + "=" + escape(value) + "; expires=Wed, 07-Jun-2023 11:07:25 GMT; path=/; domain=.nl";
	var curCookie = name + "=" + escape(value) + "; expires=Wed, 07-Jun-2023 11:07:25 GMT;";
	document.cookie = curCookie;
	self.location.href = self.location.href;
	//window.location.href = window.location.href;
	}

function getCookie(name) {
	var dc = document.cookie;
	var prefix = name + "=";
	var begin = dc.indexOf("; " + prefix);
	
	if (begin == -1) {
	begin = dc.indexOf(prefix);
	
	if (begin != 0) return null;
  	} 

	else
	begin += 2;
	var end = document.cookie.indexOf(";", begin);

	if (end == -1)
	end = dc.length;
	return unescape(dc.substring(begin + prefix.length, end));
	}

if (getCookie('fontsize') == null) {
	var fontsize = 11;
	} 

else 	{
	var fontsize = getCookie('fontsize');
	}

function changeFontSize (fontsize) {
	setFontCookie('fontsize',fontsize);
	}

document.write('<style type="text/css">');
document.write('.text {font-size:'+fontsize+'px;line-height: 150%;}');
document.write('td, P {font-size:'+fontsize+'px;line-height: 150%;}');
document.write('<\/style>');
//-->



<!-- Menu - Dropdown Click Menu functions
var openmenu 	= null;
var out 	= null;

function check(name) {
	openmenu='';
	setTimeout("hide('"+name+"')",400);
	}

function show(id) {
	hideall();
	document.getElementById(id).style.visibility="visible";
	openmenu=id;
	}

function hide(id) {
	if (openmenu!=id) {
	document.getElementById(id).style.visibility="hidden";
	}
}
//-->