(function($){
  $.fn._blank = function() {
    function clickHandler(e) {
      if (e.ctrlKey||e.shiftKey||e.metaKey)
        return;
      var w = window.open(this.href, '_blank');
      if (w && !w.closed) {
        w.focus();
        e.preventDefault();
      }
    }
    this.filter('a[@href]').bind('click', clickHandler);
    return this;
  }
})(jQuery);