\n'); } function flashAction(version) { // actions for flash and the alternative if ( flashPlugin ) { writeFlashObject(); } else { flashAlternative(); } } // -------- Schrijf flash object (als juiste plugin aanwezig is) function writeFlashObject() { var searchStr = location.search.toString(); var flashSrc = "tijdbalk.swf?"; // Als er geen searchwaarde aanwezig is wordt de defaultSrc gebruikt var defaultSearch = "thema_xml=thema001.xml&jaar_goto=-1"; if (searchStr.length > 0) { flashSrc += (chars(searchStr, 1, searchStr.length)); } else { flashSrc += defaultSearch; } var tempstr = ""; tempstr += ('\n'); document.write(tempstr); } function chars(str, start, end) { // substringfunctie var newstr = ""; for (var i = start; i <= end; i++){ newstr += str.charAt(i) ; } return newstr; } // -------- Alternatief voor flash (als juiste plugin niet aanwezig is) function flashAlternative() { document.location = '/download_flash/'; } // -------- Volgende functie wordt door de flashmovie gebruikt om de popupwindow met contentpaginas te openen function openContent(myUrl) { contentWin = window.open(myUrl, 'contenttijdbalk', 'width=620,height=350,left=40,top=30,menubar=0,statusbar=0,resizable=yes,scrollbars=yes'); contentWin.focus(); } //-->