Anchors
very simple to do.
For the part you want to link to (the content), use this.
Code:
<a name="whatever">Content here</a>
Although you don't actually have to put any content in between the tags, it will still work.
For the link, you would basically link to the anchor, and would be page.html#whatever. But if its on the same page it would be.
Code:
<a href="#whatever">Whatever</a>
|