<!--
// function FlashTitels {
// Vervangt de h1-TAGS door flash!! 

function FlashTop() {
	if(!document.getElementById || !document.getElementsByTagName) return false;
	var titelh2 = document.getElementsByTagName("h2"); // vind links in divID
	if (titelh2.length != 0) { // als er inhoud in zit,
		for(i=0; i<titelh2.length; i++) { // maak een loop met alle links
		titelinhoudh2 = titelh2[i].innerHTML; // zoek inhoud op uit h1
		flashcontenth2 = "\n<OBJECT type=\"application/x-shockwave-flash\" data=\"flash/top_new2.swf\" class=\"flashtop\" >\n"
					+" <PARAM NAME=movie VALUE=\"flash/top_new2.swf\">\n"
					+" <PARAM NAME=flashvars VALUE=\"titel="+titelinhoudh2+"\">\n"
					+" <PARAM NAME=quality VALUE=best>\n"
					+" <PARAM NAME=loop VALUE=false>\n"
					+" <PARAM NAME=wmode VALUE=transparent>\n"
					+" <embed src=\"flash/top_new2.swf\" loop=\"false\" menu=\"false\" quality=\"best\" wmode=\"transparent\" name=\"top_new2\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\n"
					+"</OBJECT>\n\n";
		titelh2[i].innerHTML = flashcontenth2;
		}
	}	
}
-->
