﻿function clearSearch(thisObject)
{
    if(thisObject.value == 'Enter search keywords') thisObject.value = '';
}

function resetSearch(thisObject)
{
    if(thisObject.value == '') thisObject.value = 'Enter search keywords';
}

