Forum Moderators: open
If someone is linking to you this way after you've agreed to trade links, you should assume that whether the link passes PR or not, your "friend" has done it because he thinks PR will not be passed. If you are linking to others with whom you are trading, be aware that the other guy may assume you are doing this to prevent passing PR and he may get angry at you.
<a href="thepage.htm" target="_blank" onClick="window.open('thepage.htm'); return false;">
This will you can still do javascript trickery like window sizing etc. without losing PR, and also visitors without javascript won't get stuck.
and this for the link
<a href="javascript:url()"</a>
and this would be the .js file
function url() { hidden=open('http://www.domainyoudontwanttogiveprto.com','NewWindow','status=no,resizable=yes,scrollbars=yes');
}
Then you would protect the directory the .js file is in with robots.txt.
You can play with the different js variables like scroll bars window size etc. I use it for a site that receives all its links from one site that has good pr. It links back extensively across many pages so i don't want to have any cross linking issues arise.
Hope this helps