//SEO Friendly and W3C valid method of opening links in a new window
<script type="text/javascript">
$(document).ready(function(){
     $('A[rel="_blank"]').each(function(){
          $(this).attr('target', '_blank');
     });
});
</script>