
/*
Cross browser marquee script II
*/


//Specify the marquee's width (in pixels)
var marqueewidth=140
//Specify the marquee's height
var marqueeheight=107
//Specify the marquee's scroll speed (larger is faster)
var speed=1
//Specify the marquee contents
var marqueecontents='<IMG src="images/news3.gif" height="12" width="88"><br><br><a class="a1" href="news.html"><font color="#8F8F8F" size="1" face="Verdana">Fluke Networks. Samenwerking tussen Fluke Networks en Heynen.</a><br><a class="a1" href="news.html"><font color="#8F8F8F" size="1" face="Verdana"><br>Brussels Palais de Congres opens in grandeur showcasing their Vista 5 and Vista 5 SR.</a><br><a class="a1" href="download/pdf/Levprog_components.pdf"><font color="#8F8F8F" size="1" face="Verdana"><br>Heynen heeft haar linecard voor componenten vernieuwd. Download hier de nieuwe versie in pdf formaat.</a><br><br><a class="a1" href="news.html"><IMG src="images/jpg/riaconnect2.jpg" height="45" width="100"></a><br><br><a class="a1" href="news.html"><font color="#8F8F8F" size="1" face="Verdana">NPS en Wereldomroep kiezen voor Studer’s OA2500 voor hun nieuwe studio’s.</a><br><br>'

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
// HdM: startlist is toegevoegd voor het menuscript te laten werken.... 
startList()
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}

window.onload=regenerate2

