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";
        }
    }
}
function $(arg) {
    return document.getElementById(arg);
}

function ShowExt(sel) {
	var olen = sel.options.length;
	for(i = 0; i < olen; i++) {
		if(i != 0) {
			if(i == sel.selectedIndex) {
				$(sel.options[i].value).className = 'vis';
			} else {
				$(sel.options[i].value).className = 'hid';
			}
		} else {
			if(i!=0) {
				$(sel.options[i].value).className='hid';
			}
		}
	}
}