// JavaScript Document
function popup(page, w, h) {
	this.open(page, "CtrlWindow", "toolbar=no,menubar=no,width=" + w + ",height=" + h + ",location=no,scrollbars=no,resizable=no");
    }
	
function refreshParent() {
	window.opener.location.href = window.opener.location.href;
	}