/**
 * Utility to enable external links in new window.  
 */ 

var LinkHandler = {

  init: function() 
  {
    $('a.ext').click(function(){ window.open(this.href); return false; });
    $('a[href$=".pdf"]').click(function(){ window.open(this.href); return false; });
  }
  
};

$(document).ready(LinkHandler.init);
