Open Link in New Tab
<!--Html way-->
<a href="http://chriscoyier.net" target="_blank">This link will open in new window/tab</a>
<!--JS way-->
<a href="http://chriscoyier.net" onclick="window.open(this.href); return false;" onkeypress="window.open(this.href); return false;">This link will open in new window/tab</a>