How to I create links to other pages

The following are a list of template variables that can be used on most pages
<!--{$link_overview}-->
<!--{$link_map}-->
<!--{$link_brochure}-->
<!--{$link_nearbyhotels}-->
<!--{$link_video}-->
<!--{$link_prices}-->
<!--{$link_changedates}-->
<!--{$link_modifysearch}-->

Example
<!--{if $link_overview}-->
    <a class="amenities" href="<!--{$link_overview}-->">Hotel Details</a>
<!--{if }-->

Search results
<!--{$link_next}-->
<!--{$link_prev}-->

Suggested use for these are

<!--{if $link_prev and $startingmatchnumber > 1}-->
<a href="<!--{$link_prev}-->"> &lt;&lt; PREVIOUS </a>
<!--{/if}-->

and

<!--{if $link_next AND $matchesfound > $startingmatchnumber}-->
<a href="<!--{$link_next}-->">  NEXT &gt;&gt; </a>
<!--{/if}-->

Prices Page
<!--{$rate.link_booking}-->

Example
<a href="<!--{$rate.link_booking}-->" rel="nofollow">Book Now</a>