function g(id) { return document.getElementById(id); }
function popUp(url, name, options) {
    if (!options) {
        // default
        options = "width=600,height=480,status=yes,resizable=yes,scrollbars=yes";
    }
    var w = window.open(url, name, options);
    w.focus();
    return(w);
}