function show(box) {
	if (document.getElementById) document.getElementById(box).className = 'box_show';
}

function hide(box) {
	if (document.getElementById) document.getElementById(box).className = 'box_hide';
}

function externallinks() {
	var ls = document.getElementsByTagName('a');
	for(var i=0;i<ls.length;i++){
		if(ls[i].getAttribute('rel')=='external') {
			ls[i].className+=ls[i].className?' extlink':'extlink';
			ls[i].title+='(opens in new window)';
			ls[i].onclick=function(){window.open(this.href);return false}
		}
	}
}

window.onload = function(){
	if(!document.getElementById && !document.createTextNode) {
		return;
	}
	externallinks();
}

