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.indexOf('video-link') >= 0) {
					anchor.onclick=popUp;
				}
		}
}
window.onload = externalLinks;

function popUp()
{
	window.open(this.href, "popup", "width=962,height=497,menubar=0,toolbar=0,resizable=1,scrollbars=1");
	return false;
}