Here is what I would try - whatever page has this code on it:
Code:
<div id="flickrBadgeImage1Div" style="width: 257px; margin-left:auto; margin-right:auto">
<script type="text/javascript" src=
"http://www.flickr.com/badge_code.gne?nsid=36699360%40N05&count=12&display=latest&name=0&size=square&raw=1" >
</script>
</div>
In the head of that page, put this tag:
Code:
<base target="_blank">
Now this should make all links on that page open in new windows. If you have other links on that page that you want to open in the same window, use target _self, ex:
Code:
<a href="whatever.htm" target="_self">Whatever</a>
Bookmarks