<!--
function toTop(id){
document.getElementById(id).scrollTop=0
}

var counter = 0;
var tUp = 0;
var tDown = 0;
var defaultStep=2;
var step=defaultStep;

function hyposcrollDivDown(id){
clearAll();
tDown=setInterval ("tscrollDown('"+id+"')",10)
}

function hyposcrollDivUp(id){
clearAll();
	tUp=setInterval ("tscrollUp('"+id+"')",10)
}

function tscrollDown(id) {
counter += 1
if (counter > 75) {
	counter = 0;
	clearInterval(tDown);
	tDown = 0;
	}
document.getElementById(id).scrollTop+=step
}

function tscrollUp(id) {
	document.getElementById(id).scrollTop-=step
counter += 1;
if (counter > 75) {
	counter = 0;
clearInterval(tUp);
tUp = 0;
}

}


function clearAll(){
if (tDown !=0) { clearInterval(tDown)}
if (tUp != 0) {clearInterval	(tUp);}
}

function toBottom(id){
document.getElementById(id).scrollTop=document.getElementById(id).scrollHeight
}

function toPoint(id){
document.getElementById(id).scrollTop=100
}
// -->