
	function init() {
		var arrAnchors = document.getElementsByTagName("a");
		for (var i = 0; i < arrAnchors.length; i++) {
		  if (arrAnchors[i].getAttribute("rel") == "external" || arrAnchors[i].getAttribute("rel") == "nofollow") {
			arrAnchors[i].setAttribute("target", "_blank");
		  }
		}
	}
	window.onload = init;
