
function pop(page, title, width, height, scroll) {
	var t = title + this.counter++;
	var s = (scroll) ? "scrollbars=yes":"scrollbars=no";
	var p = window.open(page,t,"width=" + width + ",height=" + height + ",status=no,toolbar=no,menubar=no,location=no," + s);
	this[t] = window.open(page,t,"width=" + width + ",height=" + height + ",status=no,toolbar=no,menubar=no,location=no," + s);
	this[t].focus();
}

