$(document).ready(function() {
      // Opens up links in new window.
    $('.lnkBlank').click(function() {
        window.open($(this).attr('href'), 'newWindow'+ new Date().getTime(), '');
        return false;
    });
});
