function EmbedFlash(URL, width, height, menu, quality, flash, transparency){
 //Is version nuber entered.
 if(flash == null){
  flash = "6,0,0,0"; //Replace with default version number. Default = 6,0,0,0.
 }
 
 //Checks if the menu constance is entered (correctly)
 if(menu != true && menu != false && menu != "true" && menu != "false"){
  menu = true; //Replace with default. Default = true.
 }
 
 //Checks if the quality constance is entered (correctly)
 if(quality != "high" && quality != "normal" && quality != "low"){
  quality = "high"; //Replace with default. Defautl = high.
 }
 
 //See if we can continue. 
 if(URL == null || width == null || height == null){
  //Nope, we can't.
  document.writeln("No URL, width or height entered");
 }else{
  //Add the code to the document.
  document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version="' + flash + '" width="' +  width + '" height="' + height + '">');
  document.writeln('<param name="movie" value="' + URL + '" />');
  document.writeln('<param name="quality" value="' + quality + '" />');
  document.writeln('<param name="menu" value="' + menu + '" />');
  addtrans="";
  if(transparency==true)
  {
  document.writeln('<param name="wmode" value="transparent" />');
  addtrans = " wmode=\"transparent\" ";
  }
  document.writeln('<embed src="' + URL + '" quality="' + quality + '" menu="' + menu + '"' + addtrans + 'pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' +  width + '" height="' + height + '"></embed></object>');
 }
}

<!-- Begin
function Start(page)
{
	OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resize=no,width=490,height=390");
}
// End -->

<!--
var state = 'none';

function showhide(layer_ref) {

if (state == 'block') { 
state = 'none'; 
} 
else { 
state = 'block'; 
} 
if (document.all) { //IS IE 4 or 5 (or 6 beta) 
eval( "document.all." + layer_ref + ".style.display = state"); 
} 
if (document.layers) { //IS NETSCAPE 4 or below 
document.layers[layer_ref].display = state; 
} 
if (document.getElementById &&!document.all) { 
hza = document.getElementById(layer_ref); 
hza.style.display = state; 
} 
} 
//--> 

// JavaScript Document
	function foldOut(question, imgquestion){
		answer = document.getElementById(question);
		collapse = document.getElementById(imgquestion);
			
		if(answer.style.display == "block"){
			answer.style.display = "none"; 
			collapse.src = "images/expand.gif"; }
		else{
			answer.style.display = "block";
			collapse.src = "images/collapse.gif";
			
			if(question.indexOf ('categorie') == -1){
				for(i=1;i<8;i++){
					collapseother = "vraag" + i;
					otherimage = "collapse" + i;
					
					othercollapse = document.getElementById(collapseother);
					collapseimage = document.getElementById(otherimage);
								
					if(collapseother!=question){
						othercollapse.style.display = "none";
						collapseimage.src = "images/expand.gif";
					}
				}
			}
			
			if(question.indexOf ('vraag') == -1){
				for(i=1;i<8;i++){
					collapseother = "categorie" + i;
					otherimage = "catcollapse" + i;
					
					othercollapse = document.getElementById(collapseother);
					collapseimage = document.getElementById(otherimage);
								
					if(collapseother!=question){
						othercollapse.style.display = "none";
						collapseimage.src = "images/expand.gif";
					}
				}
			}
			
			}
	}