// JavaScript Document

function popitup(url) {
	day = new Date();
	id = day.getTime();
	newwindow=window.open(url,'" + id + "','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,height=600,width=800');
	if (window.focus) {newwindow.focus()}
	return false;
}

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


function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=440');");
}

