function relTags() {
	if (document.getElementsByTagName) {
		var anchors = document.getElementsByTagName("a");
		for (var loop = 0; loop < anchors.length; loop++) {
			var anchor = anchors[loop];
			if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
				anchor.target = "_blank";
			} else if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "popup") {
				anchor.onclick = function () {
					openPopUpWindow(this);
					return false;
				};
			}
		}
	}
}

window.onload = function() {
  relTags();
}
