﻿function RemoveText(ctrl, text)
{
    if(ctrl.value.toLowerCase() == text.toLowerCase())
        ctrl.value = '';   
}

function ReplaceText(ctrl, text)
{
    if(ctrl.value == '')
        ctrl.value = text;
}