﻿<!--
function clearText(thefield)
{
    if (thefield.defaultValue == thefield.value)
        thefield.value = ""
}
function restoreText(thefield)
{
    if (thefield.value == "")
        thefield.value = thefield.defaultValue;
}
function clearPassword(thefield)
{
    if (" " == thefield.value[0])
    {
        thefield.value = ""
        thefield.type = "password";
    }
}
function restorePassword(thefield)
{
    if (thefield.value == "")
    {
        thefield.value = "  - enter password -";
        thefield.type = "text";
    }
}
//-->