function external() {
	var a = document.getElementsByTagName('a');
	for(var i = 0; i < a.length; i++){
		if(a[i].rel == 'target'){
			a[i].onclick=function() { window.open(this.href); return false; }
		}
	}
}

window.onload = function() { external(); }
