﻿// JScript File

function clearTextBox(textBox, defaultVal)
{
    if(textBox.value == defaultVal)
    {
        textBox.value = "";
    }
}
function setDefault(textBox, defaultVal)
{
   if(textBox.value == "")
   {
        textBox.value = defaultVal;
   }
}