$(document).ready( function() {
   
    $('a[rel="external"]').click( function() {
        var link =this.getAttribute("href");
		var title=$(this).text();
		if ($(this).attr("title") != null) title= this.getAttribute("title");
				if (link.indexOf("australianprescriber") != -1) {
					location.href = "http://nps.org.au/You_are_leaving_this_site_to_Australian_Prescriber?link=" + encodeURIComponent(link) + "&name=" + encodeURIComponent(title);
					return false;
				}
				else {
					location.href = "http://nps.org.au/You_are_leaving_this_site?link="+ encodeURIComponent(link) + "&name=" + encodeURIComponent(title);
					return false;
				}
    });
   
});