function GetPassword() {
    window.open("jspass.htm", "","width=225,height=50")
}

function SubmitPassword(frm)
{
    //
    // Get the value entered into the text box
    //
    var password = frm.pw.value
    //
    // Convert it to lowercase
    //
    password = password.toLowerCase()
    //
    // Add the .htm extension
    //
    var loc = "http://www.rugbytheatre.co.uk/" + password + "/index.html"
    //
    // Make sure the user entered something
    //
    if (password != "")
    {
        //
        // If so, send the browser there
        //
        opener.location.href = loc
    }
}
