function filterTargetNew() {
	this.isExternalAddress = function(anchor) {
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
			return true;
		return false;
	}
	
	this.process = function () {
		var links = document.getElementsByTagName("a");
		var i;
		for (i = 0; i < links.length; i++) {
			if (this.isExternalAddress(links[i])) {
				//alert("YES " + links[i].getAttribute("href"));
				links[i].onclick = function() {
					window.open(this.getAttribute("href"));
					return false;
				}
			} else {
				//alert("NO " + links[i].getAttribute("href"));
			}
		}
	}
}
