var hscrollerwidth="228px"
var hscrollerheight="200px"
var hscrollerspeed=1

var hpauseit=1

hscrollerspeed=(document.all)? hscrollerspeed : Math.max(1, hscrollerspeed-1)

var hcopyspeed=hscrollerspeed
var hiedom=document.all||document.getElementById
var hactualheight=''
var hcross_scroller, hns_scroller
var hpausespeed=(hpauseit==0)? hcopyspeed: 0

function hpopulate(){
if (hiedom){
hcross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
hcross_scroller.style.top=parseInt(hscrollerheight)+8+"px"
hcross_scroller.innerHTML=hscrollercontent
hactualheight=hcross_scroller.offsetHeight
}
else if (document.layers){
hns_scroller=document.hns_scroller.document.hns_scroller2
hns_scroller.top=parseInt(hscrollerheight)+8
hns_scroller.document.write(hscrollercontent)
hns_scroller.document.close()
hactualheight=hns_scroller.document.height
}
lefttime=setInterval("scrollscroller1()",20)
}
window.onload=hpopulate

function scrollscroller1(){

if (hiedom){
if (parseInt(hcross_scroller.style.top)>(hactualheight*(-1)+8))
hcross_scroller.style.top=parseInt(hcross_scroller.style.top)-hcopyspeed+"px"
else
hcross_scroller.style.top=parseInt(hscrollerheight)+8+"px"
}
else if (document.layers){
if (hns_scroller.top>(hactualheight*(-1)+8))
hns_scroller.top-=hcopyspeed
else
hns_scroller.top=parseInt(hscrollerheight)+8
}
}

if (hiedom||document.layers){
with (document){
if (hiedom){
write('<div style="position:relative;width:'+hscrollerwidth+';height:'+hscrollerheight+';overflow:hidden" onMouseover="hcopyspeed=hpausespeed" onMouseout="hcopyspeed=hscrollerspeed">')
write('<div id="iescroller" style="position:absolute;left:15px;top:0px;width:100%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+hscrollerwidth+' height='+hscrollerheight+' name="hns_scroller">')
write('<layer name="hns_scroller2" width='+hscrollerwidth+' height='+hscrollerheight+' left=0 top=0 onMouseover="hcopyspeed=hpausespeed" onMouseout="hcopyspeed=hscrollerspeed"></layer>')
write('</ilayer>')
}
}
}
