

/*COMPRESSMAKESBIGGER*/


$(document).ready(function() {
  assignWindowEvents();
}); 

function assignWindowEvents() {
  $("a.xLink").click(function () {
     window.open($(this).attr("href"),'newWindow');
     return false;
  });
  $("a.xPopup").click(function () {
     this.newWindow = window.open($(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;
  });
}

