// There is no target attribute in HTML 4.01 Strict.
// This script hunts for links that are either to a different website or to PDF
// and pops them open in a new window
$(function() {
var h = window.location.host.toLowerCase(); 

$("a[href^='http']:not(a[href^='http://" + h + "']):not(a[href^='http://www." + h + "']), a[href$='.pdf'], a[rel='external']").click(function() {   
                window.open($(this).attr('href')); 
                return false;   
});

		   });