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