// JavaScript Document



var x = document.getElementsByTagName('a');

for (var i=0;i<x.length;i++) {
	if (x[i].getAttribute('type') == 'popup') {
		x[i].onclick = function () {
			return popi(this.href)
		}
		x[i].title += ' (Popup)';
	}
}

function popi(url) {
	newwindow=window.open(url,'name');
	if (window.focus) {newwindow.focus()}
	return false;
}
