<DIV STYLE="width: 350; height: 100; overflow: scroll; border:1pt black solid"> contents <br> contents contents <br> contents contents <br> contents contents <br> contents </DIV><hr> <p><br> </p> <DIV ID=s1 STYLE="width: 300; height: 100; overflow: hidden; border:1px black solid"> 1contentscontents <br> 2contents contents <br> 3contents contents <br> 4contents contents <br> 5contentscontents <br> 6contents contents <br> 7contents contents <br> 8contents contents <br> 9contents </DIV> <SCRIPT> var sRepeat=null function doScrollerIE(dir, src, amount) { if (amount==null) amount=10 // Move the top of the contents up or down // in the viewport if (dir=="up") document.all[src].scrollTop-=amount else document.all[src].scrollTop+=amount // Check if to repeat if (sRepeat==null) sRepeat = setInterval("doScrollerIE('" + dir + "','" + src + "'," + amount + ")",100) return false } // Used to end repeating scrolling window.document.onmouseup = new Function("clearInterval(sRepeat);sRepeat=null") window.document.ondragstart = new Function("return false") </SCRIPT> <P> <A ONMOUSEDOWN="return doScrollerIE('down','s1',40)" ONMOUSEOUT="clearInterval(sRepeat)" HREF="#"> Down </A> | <A ONMOUSEDOWN="return doScrollerIE('up','s1',40)" ONMOUSEOUT="clearInterval(sRepeat)" HREF="#"> Up </A> |