window.onload = function () {
	initElement();
}

function initElement() {
	var a = document.getElementsByTagName('a');
	for (var i=0;i<a.length;i++) {
		if (a[i].getAttribute('type') == 'pop') {
			a[i].onclick = function () {
				return pop(this.href)
			}
			a[i].title += ' (Popup)';
		}
	}
}

function pop(url) {
	newwindow = window.open(url, 'name', 'height=650,width=750');
	if (window.focus) {newwindow.focus()}
	return false;
}