function goPrivate() {
    // Set cookie criteria
    //  - Note: I don't set the domain since such will not work on local machine
    //      during testing.  Instead, I let it default to that of the server
    //      that is actually processing the request.  However, to make sure
    //      I don't catch cookies for other apps, I always use cookie names
    //      with the "Hartney" prefix.
    //  - Note: I don't set the path since such will default to the top level
    //      automatically and that is adequate for my needs.
    //  - Expires at end of current session to prevent later use of that computer by
    //    an unauthorized user.  I.e., every session must login to the private area.
    var cookieExpiration = new String(";expires=")
    //var cookiePath = new String(";path=/")
    var cookiePrefix = new String("Hartney")

    // Define ID cookie to identify the user as a guest
    // (Since I don't currently have a method of capturing the
    //  security password and translating it into a user ID.)
    document.cookie = cookiePrefix + "myID=" + "0000" + cookieExpiration

    // Define ID cookie to identify the initial genealogy display page
    // Note: The initial display will be Granddad's page.
    document.cookie = cookiePrefix + "currID=" + "0001" + cookieExpiration

    // Proceed into private area
    window.location = "private/index.html"
}