<!--
function toTop(id){
document.getElementById(id).scrollTop=0
}

step=5

timerUp="" 
timerDown="" 

function scrollDivDown(id){
clearTimeout(timerDown) 
document.getElementById(id).scrollTop+=step
timerDown=setTimeout("scrollDivDown('"+id+"')",10)
}

function scrollDivUp(id){
clearTimeout(timerUp)
document.getElementById(id).scrollTop-=step
timerUp=setTimeout("scrollDivUp('"+id+"')",10)
}

function toBottom(id){
document.getElementById(id).scrollTop=document.getElementById(id).scrollHeight
}

function stopMe(){
clearTimeout(timerDown) 
clearTimeout(timerUp)
}

document.onmousemove=function(){stopMe()}
// -->
