﻿$(document).ready(function () {
  // Open External Window
  $('a[href^="http"], a[href$=".pdf"]').click(function () {
    window.open(this.href);
    return false;
  });
})

