function back_to_top(id){
document.getElementById(id).scrollTop=0
}

function scrollDown(l,i)
{
//var j = 'point' + i.toString();
var j = i.toString();

var thepoint = document.getElementById(j).offsetTop;
document.getElementById(l.toString()).scrollTop = thepoint;
}

