// JavaScript Document
function popupType(){
	
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++) {
		if (x[i].getAttribute('type') == 'popup') {
			x[i].onclick = function () {
				return popSPR(this.href)
			}
			x[i].title += ' (Popup)';
		}
	}

}