There is no way that I know of to disable pop-up blockers, only ways to work around them IF they will let you. Unless the pop-up blocker is really aggressive, this sort of thing works:
HTML Code:
<a href="whatever.htm" onclick="window.open(this.href);return false;)">Link Text</a>
You can use a full window.open method with all of the specifications you desire. However, unless the user is clicking on this to apparently 'user select' it, most pop-up blockers will block it. Some really aggressive ones will block it anyway and some browsers, will do unexpected things like open tabs, open a full sized complete new window regardless of the specifications, or do nothing.
The best bet is to not use window.open for organizing or laying out your site and its contents. Reserve it for non-essential special effects.
Bookmarks