function popUp(page, width, height) {
    win = this.open(page, "popUp", "toolbar=no,menubar=yes,location=no,"
                    + "status=yes,scrollbars=yes,resizable=yes,"
                    + "width=" + width + ",height=" + height + ","
                    + "left=50,top=50");
    win.window.focus();
}

// vim: sta et sw=4
