That was a good move but, that only prevents the large versions of each image from being linked. Where you have:
Code:
<A HREF="#"
onmouseover="modifyimage('dynloadarea', 0)"><IMG
SRC="../images/tn_hwy19_01.jpg" BORDER=0 ALIGN=bottom></A>
and similar for each thumbnail image, that makes each one of them a link to the top of the page. There are a number of ways around this, the easiest is to change the href to javascript:void(0); - example:
Code:
<A HREF="javascript:void(0);"
onmouseover="modifyimage('dynloadarea', 0)"><IMG
SRC="../images/tn_hwy19_01.jpg" BORDER=0 ALIGN=bottom></A>
Bookmarks