  $(function(){
      $('label.lowercase a').click(function(){
          window.open(this.href, 'legal', 'location=no, resize=yes, scrollbars=yes, toolbar=no, direcories=no, width=990, height=740')
          return false;
      });
      $('a.new-window').click(function(){
          window.open(this.href)
          return false;
      });
  });