OK, I tried the page again and it came pretty much right up. But because of the code involved I cannot easily make a local mock up for testing. So we may have to experiment a little.
Yes, you could do something to open all links in a new window, but aren't there other links on the page that you wouldn't want to have that treatment?
Anyways, I see you already have jQuery on the page. So let's start by trying this. Add it to the bottom of the page, right before the closing </body> tag:
Code:
<script type="text/javascript">
(function($){
$('div[class*=someclass] a').live('click', function(e){
open(this.href, '_blank', 'top=100, left=200, width=550, height=450, resizable, scrollbars');
e.preventDefault();
});
})(jQuery);
</script>
The browser cache may need to be cleared and/or the page refreshed to see changes.
If it doesn't work, leave it - or make a copy of the page with it so I can have a look at it to see what the problem might be.
Bookmarks