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

window.onload = tb;
