// set the function to clear the search field text
function clickclear(thisfield, defaulttext) {
if (thisfield.value == defaulttext) {
thisfield.value = "";
}
}

// set the function to restore the search field text
function clickrecall(thisfield, defaulttext) {
if (thisfield.value == "") {
thisfield.value = defaulttext;
}
}

	
   function noSpam(user,domain) {
      locationstring = "mailto:" + user + "@" + domain;
      window.location = locationstring;
      }

