function body_onLoad() {

	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++) {
		if (x[i].getAttribute('type') == 'popup') {
			x[i].onclick = function () {
				var newwindow = window.open( this.href, '', 'resizable=1,scrollbars=1' );
				if (window.focus) 
					newwindow.focus();
				return false;
			}
		}
	}
}