tickercontents[0]='kon telexberichten niet ophalen'; /* ------------------------------------- T E L E X - t i c k e r ------------------------------------ */ /* Ticker Tape script- © Dynamic Drive (www.dynamicdrive.com) For full source code, installation instructions, 100's more DHTML scripts, and Terms Of Use, visit dynamicdrive.com */ //configure tickercontents[] to set the messges you wish be displayed (HTML codes accepted) var tickercontents=new Array() //configure the below 2 variables to set the width/background color of the ticker var tickerwidth='480px'; var tickerbgcolor='none'; //configure the below variable to determine the delay between ticking of messages (in miliseconds var tickdelay=13000 ////Do not edit pass this line//////////////// var currentmessage=0 function changetickercontent(){ if (document.layers){ document.tickernsmain.document.tickernssub.document.write(tickercontents[currentmessage]) document.tickernsmain.document.tickernssub.document.close() } else crosstick.innerHTML=tickercontents[currentmessage] if (currentmessage==tickercontents.length-1) currentmessage=0 else currentmessage++ setTimeout("changetickercontent()",tickdelay) } function start_ticking(){ if (document.layers) document.tickernsmain.visibility="show" else crosstick=document.getElementById? document.getElementById("tickerie") : document.all.tickerie changetickercontent(); } /* if (document.all||document.getElementById) document.write('
') window.onload=start_ticking */ if (document.all||document.getElementById) document.write('
') window.onload=start_ticking