// JavaScript Document
function clearText(thefield){
if (thefield.value == "Search")
thefield.value = ""
}
function resetText(thefield){
if (thefield.value== "")
thefield.value = "Search"
}


function chonfocus(thefield){
thefield.style.backgroundColor='#666666';
thefield.style.color='#ffffff';
}
function chonblur(thefield){
thefield.style.backgroundColor='#a9a9a9';
thefield.style.color='#ffffff';
}
