function externalLinks() {
        if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		anchor.onclick = function(){
			if (window.console && window.console.log)
				window.console.log(this);
			if (this.href.match(/^http\:/i) && (this.rel == "externalLink")) {
				var awr = "/cgi-bin/awredir.pl?url=";
				if (window.console && window.console.log)
					window.console.log(awr+this.href);
				window.location = awr + this.href;
				return false;
			}
		}
	}
} window.onload = externalLinks;
