
Originally Posted by
mburt
click() doesn't work for FF as I'm aware of.
Yeah, that's true. 
But this should work:
Code:
<script type="text/javascript">
function openOtherLinks(id1, id2) {
var link1 = document.getElementById(id1);
var link2 = document.getElementById(id2);
if(!link1.href || !link2.href)
return;
window.open(link2.href);
document.location.replace(link1.href);
}
</script>
Code:
<a href="javascript:openOtherLinks('link1', 'link2')"><img src="..." alt="..." /></a>
<a id="link1" href="http://www.google.com">Link 1</a>
<a id="link2" href="http://www.yahoo.com" target="_blank">Link 2</a>
Bookmarks