At the spot you want the page to jump to, you need to put an anchor:
Code:
<a name="NAME">TEXT</a>
NAME can be whatever -- a number, letter, word...
TEXT is the text that the page will try to jump to.
For the link that jumps there, you need
Code:
<a href="#NAME">TEXT</a>
NAME is the same as the NAME for the anchor you want to jump to.
TEXT is whatever you want people to click on.