
function resetTxt()
{
var t=document.getElementById("srch_fld").value;
if(t=="")document.getElementById("srch_fld").value="Search";
}
function clearTxt()
{
var t=document.getElementById("srch_fld").value;
if(t=="Search")document.getElementById("srch_fld").value="";
}
// JavaScript Document
