Not sure what you mean by that last bit:

Originally Posted by
martyn_green
a html file with an image for title
Anyways, two links for one can be done but, not with an ordinary hyperlink. You say you have two iframes. Give them each a name like:
HTML Code:
<iframe name="banner" src="banner1.htm" width="350" height="150" frameborder="0"></iframe>
and later on in the page:
HTML Code:
<iframe name="main" src="main1.htm" width="650" height="450" frameborder="0"></iframe>
Now, using javascript, we can target both on one click. Since I imagine the 'main' iframe is more important, we will make it the actual hyperlink and have the banner change use javascript:
HTML Code:
<a href="main2.htm" target="main" onclick="banner.location.href='banner2.htm';return true;">Click for main2.htm</a>
You should choose the lesser important link for javascript (the onclick event) because non javascript enabled browsers will not be able to use it.
Bookmarks