function externalLinks() {
    if (!document.getElementsByTagName) return;
    var anchors = document.getElementsByTagName("a");
    for (var i = 0; i < anchors.length; i++) {
	var anchor = anchors[i];
	if (anchor.getAttribute("href") &&
	    anchor.getAttribute("rel") == "external")
	    anchor.target = "_blank";
	if (anchor.className.match("movie")) {
	    anchor.onclick = function() {
		window.open(this.href, null, 'width=660,height=540,menubar=no,toolbar=no,scrollbar=yes');
		return false;
	    }
	}
	if (anchor.className.match("movie_tz10")) {
	    anchor.onclick = function() {
		window.open(this.href, null, 'width=874,height=540,menubar=no,toolbar=no,scrollbar=yes');
		return false;
	    }
	}
    }
}
window.onload = externalLinks;
