function popup(path) {
	return popup_page('/popup?page=' + path, 500, 400, false, false);
}

function popup_page(path, width, height, scroll, resize) {
	window.open(path, null, "help=no,status=no,scrollbars="  + (scroll ? 'yes' : 'no') + ",resizable=" + (resize ? 'yes' : 'no') + ",width=" + width + ",height=" + height + ",dependent=yes");
	return true;
}

