<!--


function linkOn(tekst, nr) {
	var flame_id = 'flame'+nr;
	var link_id = 'link'+nr;

	if (document.images) {
		document[flame_id].src='flame_on.gif';
	}
	if (document.getElementById) { // NS 6+, IE 6 style hover
		document.getElementById(link_id).style.color = "F97C04";
	} else if (document.all) { // IE 4+ only
		document.all[link_id].style.color = "F97C04";
	}
	window.status = tekst;
}

function linkOff(afdeling, nr) {
	var flame_id = 'flame'+nr;
	var link_id = 'link'+nr;

	if (document.images) {
		document[flame_id].src='flame_off.gif';
	}
	if (document.getElementById) { // NS 6+, IE 6 style hover
		document.getElementById(link_id).style.color = "FFFFFF";
	} else if (document.all) { // IE 4+ only
		document.all[link_id].style.color = "FFFFFF";
	}
	window.status = "Welkom op de website van " + afdeling;
}

function MM_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}
//-->