$("document").ready(function() {
  $("a.NW").click(function() {
    window.open(this.href);
    return false;
    });
  });