<!--
function exeFlash(movie, breedte, hoogte, pars) {
  var par1 = '', par2 = '';
	if (pars != '') {
		p = pars.split(',');
		for (var x = 0; x < p.length; x++) {
			var a = p[x].split('=');
			var parameter = a[0];
			var waarde = a[1];
			par1 += '<param name="' + parameter + '" value="' + waarde + '">\n';
			par2 += parameter + '=' + '"' + waarde + '" ';
		}
	}
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0" width="' + breedte + '" height="' + hoogte + '" title="">\n');
	document.write('<param name="movie" value="' + movie + '" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write(par1);
	document.write('<embed src="' + movie + '" quality="high" ' + par2 + ' pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + breedte + '" height="' + hoogte + '"></embed>\n');
	document.write('</object>\n');
}

function menu(obj, aan) {
	if (aan == 0) document.getElementById(obj.id).src = 'images/btn.' + obj.id + '.gif'; 
	if (aan == 1) document.getElementById(obj.id).src = 'images/btn.' + obj.id + '.over.gif'; 
}

var currentItem = 0;
function openItem(id) {
	if (currentItem > 0) document.getElementById('div' + currentItem).className = 'hideItem';
	currentItem = id;
	document.getElementById('div' + currentItem).className = 'showItem';
}

//-->
