is there any way to automatically move to a "page bookmark" or "target" or what frontpage calls a "name" as soon as the page loads? im hoping there is a <body onload="xxx"> function available here to do this type of thing...
Do you mean to shift down to a different part of the page? onload="window.location=window.location + '#wherever'"
<body onLoad="javascript:myScript();"> and have a script that may parse current url, do some other processing, add any part then what our friend above stated. script should look like <script language="javascript"> function myScript() { //all your processing } </script>