JavaScript Browser functions
From JumbaWiki
JavaScript for window actions can be called through the body onLoad() function or through an <a href...></a> HTML tag. These useful browser functions can be used as an alternative to options available through the browser.
Note: These scripts can also be written as functions within the standard script tag:
<script language="Javascript">//YOUR CODE HERE</script>
History Navigation
These codes can be used seperately to go back and forward between pages in the browser history:
<a href="javascript:history.go(-1)">Back One Page</a>
<a href="javascript:history.go(1)">Forward One Page</a>

