// Load Flash
function flash(swf, w, h)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+w+'" height="'+h+'">');
	document.write('<param name="allowScriptAccess" value="always"><param name="wmode" value="transparent"><param name="movie" value="'+swf+'"><embed src="'+swf+'" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'"></embed></object>');
}

// Show/Hide submenu
var hoogste;

function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "inline";
}
function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ReverseContentDisplay(d) {
	if(d.length < 1)
	{
		return;
	}
	if( document.getElementById(d).style.display == "inline")
	{
		document.getElementById(d).style.display = "none";
	}
	else
	{
		document.getElementById(d).style.display = "inline";
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}