You have to explain exactly what it is you want. You cannot scroll, as far as I know, the inner contents of a DIV element. However, you can scroll the browser window, using the "scrollTo()" method.
You can know the size of an element, using it's "clientHeight" property, for example, and its position on the page, using offsetTop & offsetParent.
Here's a simplistic example of scrolling:
<html>
<head>
<script type="text/javascript">
function myScroll()
{
x = document.getElementById("myDiv");
h= x.clientHeight;
self.scrollTo(0,h);
}
</script>
</head>
<body onload="myScroll();">
<div id="myDiv">
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Donec tristique lectus sit amet est. Vivamus sit amet lacus.
Morbi convallis sem nec lectus.
Nullam in odio ac augue porttitor semper.
Nam leo. Morbi varius molestie felis. Etiam egestas.
Donec vitae mauris vitae nisi gravida pharetra. In molestie eros eu tellus.
Suspendisse a mi vitae nulla vehicula lacinia.
Ut pellentesque lobortis ipsum. Quisque a leo. Curabitur tincidunt.
Fusce est velit, condimentum sed, convallis in, blandit hendrerit, eros.
</p>
</div>
</body>
</html>
I simply measure the clientHeight of the DIV element, and tell the browser to scroll to that position. This doesn't take into account that the DIV might be nested, etc. You'll need to use the offsetTop and offsetParent properties to make the code robust. Search for those terms, you should easily find everything you need, which is why I didn't spell it all out for the previous poster.