How do I link / jump to a SPECIFIC section on a different page

Hi All

How do I link / jump to a SPECIFIC section on a different page. At present I have my first page which shows a list of towns (clickable links), when I click on e.g Sutton I get taken to Abingdon at the top of the page.

What’s the right HTML code to add to each area in the first and second page so it all works smoothly.

Thanks in advance

A bookmark:

<a href="towns.htm#Sutton">Sutton</a>

In the document towns.htm, the section on Sutton would contain an id with that name

<h2 id="Sutton">Sutton</h2>
<p>Info about Sutton.</p>

Thanks DogFang, Perfect, thats exactly what I was after.

Cheers Mate.