Without using the script would probably be easier:
HTML Code:
<a href="image_1.htm"
onmouseover="window.frames['iframe_name'].location.href=this.href;"
onclick="return false;"><img
src="image_1_tbn.jpg" style="border:none;"></a>
The iframe would look something like so:
HTML Code:
<iframe name="iframe_name" src="beginning.htm" height="250" width="300"></iframe>
If you wanted to avoid the page in the iframe from getting into the history stack, you would do:
HTML Code:
<a href="image_1.htm"
onmouseover="window.frames['iframe_name'].location.replace(this.href);"
onclick="return false;"><img
src="image_1_tbn.jpg" style="border:none;"></a>
Bookmarks