        function testloggedin(page) {
          var siteRoot = document.index.siteroot.value;
          var validUserValue = document.index.nhnpavaliduser.value;
          var title = "";

          if( ( validUserValue+"" == "false") || ( validUserValue+"" == "") ) {
            if( page == "bylaws") {
              title = "NHNPA Bylaws are";
            }
            else if( page == "policies") {
              title = "NHNPA Policies are";
            }
            else if( page == "updatemyinfo") {
              title = "Update My Info page is";
            }
            else if( page == "ebulletin") {
              title = "eBulletin is";
            }

            alert( "The " + title + " available only to members who are logged in.\n\nPlease log in or consider joining the NHNPA.");

          }
          else {
            var docURL = "http://" + siteRoot + "/documents/" + page + ".pdf";
            window.open(docURL,'sitepopup','width=900,height=600');
          }
        }

        function conference() {
          alert("Some text here.  Then the user will be directed to the conference web site.");
          window.open("http://www.bc.edu/bc_org/avp/son/cont-ed/nrnpc/nrnpc.html",'sitepopup','width=900,height=600');
        }

        <!--

        //-------    popImg()    ---------------------------------------
        //--   Input : (iName) - the name of the large image to be shown in the popup
        //--   Options : (pInfo) - These are for the base window settings when opened
        //--------------------------------------------------------------
        function popImg(iName) {
            var pInfo='toolbar=0,';
                pInfo+='location=0,';
                pInfo+='directories=0,';
                pInfo+='status=0,';
                pInfo+='menubar=0,';
                pInfo+='scrollbars=0,';
                pInfo+='resizable=1,';
            window.open(iName, 'popimg', pInfo);
        }
    //-->