    var footnote;

    function popWin(href) {
        if (footnote == null || footnote.closed) {
            footnote = window.open(href, "footnote", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=350,height=300")
        } else { 
            if (navigator.appName.substring(0.8) == "Netscape") {
                footnote.location.href = href;
                footnote.focus();
            } else {
                footnote = window.open(href, "footnote", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=350,height=300")
            }
        }
        footnote.focus();
    }

    function footOver(which) {
        top.defaultStatus= "Displaying footnote";
        popWin("www/f/" + which + ".html");
    }
