// js-helper
// version 1.0, 12/2012
// written by Bernd Schiehlen, Brise-Solutions


function clearsearch(domid,searchdefault) {
  // delete the searchfield by clear serach
  if (document.getElementById(domid).value == searchdefault){
      document.getElementById(domid).value = '';
  }
}

function decode(text1, text2, text3) {
      document.write('<a href="' + 'mailto:' + text1 + '@' + text2 + '.' + text3 + '">' + text1 + '@' + text2 + '.' + text3 + '</a>');
}


