function getLinks() {
//	var theLink = document.getElementsByTagName("a");
//	for (i = 0; i <= theLink.length; i++) {
//		if (theLink[i].href.indexOf("popup", 0) != -1 || theLink[i].href.indexOf("popup", 0) != 0) {
//			theLink[i].target = "_blank";
//		}
//	}
	var theLink = document.getElementsByName("popup");
	for (i = 0; i <= theLink.length; i++) {
			theLink[i].target = "_blank";
	}
}

if (window.addEventListener) {
	window.addEventListener('load', getLinks, false);	
} else window.attachEvent('onload', getLinks);