//move top to bottom
function scroll(n)
{temp=n;
moveT2B.scrollTop=moveT2B.scrollTop+temp;
if (temp==0) return;
setTimeout("scroll(temp)",20);
}

