$(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=800,height=600');     this.newWindow.focus();     this.newWindow.opener = window;     return false;  });  $('a.xPrint').click(function () {     window.print();     return false;  });}

