<!--
//Specify the marquee's width (in pixels)
var marqueewidth=205
//Specify the marquee's height
var marqueeheight=215
//Specify the marquee's scroll speed (larger is faster)
var speed=2
//Specify the marquee contents
var marqueecontents='<center><font face="arial" color="#0000FF" size="4"><p><font face="Arial" color="#0000FF" size="4"><strong>Kursprogramm</strong></font></p><p><font SIZE="2" face="Arial" color="#0000FF">Kurs/Anmeldung/Durchführungsort</font></p></center><p><font face="Arial" SIZE="2" color="#0000FF"><strong>&nbsp;Selbstbehauptungs- und<br>&nbsp;Redetraining<br></strong>&nbsp;3 Samstage<br>&nbsp;Daten und Anmeldung bei:</em><br>&nbsp;Klubschule Migros Zürich-<br>&nbsp;Limmatplatz, 044 317 54 54</font></p><p><font face="Arial" SIZE="2" color="#0000FF">&nbsp;(Für weiter detailierte Angaben<br>&nbsp;siehe "Kurse/Seminare")</p></font>'

if (document.all){
document.write('<marquee id="scrollup" direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')
//stop marquee when mouse is over it
scrollup.onmouseover=new Function("scrollup.scrollAmount=0")
//re-enable marquee when mouse is out
scrollup.onmouseout=new Function("scrollup.scrollAmount=2.5")
}

function regenerate(){
window.location.reload()
}
function regenerate2(){
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
// -->