function newwin(srclink) {
	var alpha = window.open(srclink.href, 'bravo');
	alpha.focus();
	return alpha;
};

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

function addOnClick() {
	var anchors, i;
	anchors = document.getElementsByTagName('a');
	for(i=0; i<anchors.length; i++) {
		if(/external/.test(anchors[i].className) || /document/.test(anchors[i].className)) {
			anchors[i].onclick = function() {newwin(this); return false;};
			//anchors[i].onkeypress = function() {newwin(this); return false;};
		};
	};
};

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

if(document.getElementById && document.createTextNode) {
	window.onload=addOnClick;
};