jQuery(document).ready(function() {
  assignXLinkEvents();
}); 

function assignXLinkEvents() {
  jQuery("a.xLink").click(function () {
     window.open(jQuery(this).attr("href"),'newWindow');
     return false;
  });
  jQuery("a.xPopup").click(function () {
     this.newWindow = window.open(jQuery(this).attr("href"),'popup','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=660,height=760');
     this.newWindow.focus();
     this.newWindow.opener = window;
     return false;
  });
}

