Forum Moderators: open
The ability to link within the page is a part of HTML. You establish a "bookmark" within the page by putting it in (or just below) an anchor tag and giving it a name. Then you can jump to that bookmark with a link to the name of the bookmark with a hash symbol (#) in front of it.
Here's an example:
<a href="#p1">Paragraph I</a><br>
<a href="#p2">Paragraph II</a><br>
...
<a name="p1"></a>Lorem ipsum blah blah blah...
hth,
g.