// ------------------------------------------------------- 
//                      S E A R C H
// ------------------------------------------------------- 
function clickclear(thisfield, defaulttext) {
  if (thisfield.value == defaulttext) {
    thisfield.value = "";
    thisfield.style.color="#000000";
  }
}

function clickrecall(thisfield, defaulttext) {
  if (thisfield.value == "") {
    thisfield.value = defaulttext;
    thisfield.style.color="#9A9A9A";
  }
}
// ------------------------------------------------------- 
//                  E N D   S E A R C H
// -------------------------------------------------------