Well, I am still not clear what you are after, if you want the forward control to, as well as move the contents forward, also scroll the page, you can use the window.scrollTo(x, y) method:
Code:
<div id="formnavigation" style="width:200px; display:none">
<a id="backbutton" href="javascript:cycleback()" style="float:left">Back</a>
<a id="forwardbutton" href="javascript:cycleforward()" onclick="window.scrollTo(0, 0);return true;" style="float:right">Forward</a>
</div><br>
Or, with this type of setup you could also do:
Code:
<div id="formnavigation" style="width:200px; display:none">
<a id="backbutton" href="javascript:cycleback()" style="float:left">Back</a>
<a id="forwardbutton" href="#" onclick="cycleforward();return true;" style="float:right">Forward</a>
</div><br>
Bookmarks