﻿/* controls for setting unav login value and clearing it */
function clearInput(tb, strType)
{
    if ( (strType == "U" && tb.value == "Enter Account #") || (strType == "P" && tb.value == "Enter User ID") )
    {
        tb.value = "";
    }
}

function setInput (tb, strType)
{
    if (strType == "U" && tb.value == "")
    {    
        tb.value = "Enter Account #";
    }    
    else if (strType == "P" && tb.value == "")
    {    
        tb.value = "Enter User ID";
    }
}