You can construct a link that will fire two page loads:
HTML Code:
<a href="somepage.htm" onclick="window.open('another.htm');return true;">Dual Link</a>
That shouldn't arouse the pop up blockers on all but the tightest security settings. This one may activate blocking but fires three links:
HTML Code:
<a href="somepage.htm" onmousedown="window.open('another.htm');return true;" onmouseup="window.open('yetanother.htm');return true;">Triple Link</a>
If you want the anchor link to open in a new window as well, add targeting:
HTML Code:
<a href="somepage.htm" target="_blank" onclick="window.open('another.htm');return true;">Dual Link</a>
Bookmarks