﻿function RemoveSearchText(id)
{
    if(id !=null)
    {
        if(id.value == "Search")
        {
            id.value = "";
            id.focus();
        }
    }
}
function AddSearchText(id)
{
    if(id !=null)
    {
        if(id.value == "")
        {
            id.value = "Search";                
        }
    }
}
