You should use this scrolling content script instead:
http://www.dynamicdrive.com/dynamici...ramescroll.htm
you can substitute those cool looking arrows for the up/down words if you like, so it will look exactly the same. Then in that script from JavascriptKit, replace this line:
Code:
location=temp.options[temp.selectedIndex].value
with these lines:
Code:
if (document.getElementById)
document.getElementById('datamain').src=temp.options[temp.selectedIndex].value
else if (document.all)
document.all('datamain').src=temp.options[temp.selectedIndex].value
Bookmarks