﻿/* Handles registration name and email textboxes */

function onTextNameEnter(ctl)
{
    if (ctl.value == "Name")
    {
        ctl.value = "";
    }
}

function onTextEmailEnter(ctl)
{
    if (ctl.value == "Email Address")
        ctl.value = "";
}

function onTextNameExit(ctl)
{
    if (ctl.value == "")
    {
        ctl.value = "Name";
    }
}

function onTextEmailExit(ctl)
{
    if (ctl.value == "")
        ctl.value = "Email Address";
}