﻿// JScript File

// remove text in the textbox on focus
function removeText(txt)
{
document.getElementById(txt).value = "";
}
// add text in the textbox on focus
function addText(txt, value)
{
if(document.getElementById(txt).value == "")
{
document.getElementById(txt).value = value;
}
}