<!--
function FlashTitels() {
	if(!document.getElementById || !document.getElementsByTagName) return false;
	var titelh1 = document.getElementsByTagName("h1"); 
	if (titelh1.length != 0) { 
		for(i=0; i<titelh1.length; i++) { 
		titelinhoud = titelh1[i].innerHTML; 
		flashcontent = "\n<OBJECT type=\"application/x-shockwave-flash\" data=\"titel.swf\" class=\"flashtitel\" >\n"
					+" <PARAM NAME=movie VALUE=\"titel.swf\">\n"
					+" <PARAM NAME=flashvars VALUE=\"titel="+titelinhoud+"\">\n"
					+" <PARAM NAME=quality VALUE=best>\n"
					+" <PARAM NAME=wmode VALUE=transparent>\n"
					+"</OBJECT>\n\n";
		titelh1[i].innerHTML = flashcontent;
		}
	}	
}

-->