﻿/**
 * Click handler for SignUpButton. Redirects browser to account creation page.
 */
/* void */var SignUpButton_click = function()
{
    document.location = "AddAccount.aspx";
    return false;
}

/**
 * Focus handler for UsernameTextBox. Clears the value, if the value is the
 * default one.
 */
/* void */var UsernameTextBox_focus = function(/* HTMLElement */textBox)
{
    /* string */var defaultValue = "Username";
    if (serverVars != null && typeof(serverVars.resource_value_input_username) == "string")
    {
        defaultValue = serverVars.resource_value_input_username;
    }
    if (textBox.value == defaultValue)
    {
        textBox.value = "";
    }
}

/**
 * Blur handler for UsernameTextBox. Sets the value to the default value if the
 * field is blank.
 */
/* void */var UsernameTextBox_blur = function(/* HTMLElement */textBox)
{
    /* string */var defaultValue = "Username";
    if (serverVars != null && typeof(serverVars.resource_value_input_username) == "string")
    {
        defaultValue = serverVars.resource_value_input_username;
    }
    if (textBox.value == "")
    {
        textBox.value = defaultValue;
    }
}
