﻿
//PAGE SPECIFIC for ~/my/rp.aspx

$(document).ready(function()
    {
        $("input.Button").click(btnContinue_OnClick);
        $(txtUserName).keypress(function(e){return txtUserName_OnKeyPress(e);});

        txtUserName.focus();
    }
);

function txtUserName_OnKeyPress(e)
{
    if (e.which == 13)
    {
        btnContinue_OnClick();
        return false;
    }
    else
    {
        return true;
    }
}
function btnContinue_OnClick()
{
    $("input.Button").attr("disabled", "disabled");
    $("input.Button").val("Please wait...");

    lnkContinue_OnClick();
}
