  $(function(){
      $('a.new-window').click(function(){
          window.open(this.href, '/legal', 'location=no, resize=yes, scrollbars=yes, toolbar=no, directories=no, width=800, height=600');
          return false;
      });
  });

