function findset(slowo)
{
 key = document.getElementById('searchBoxTxt');
 keyform = document.getElementById('search'); 
 key.value=slowo;
 keyform.submit();
}

function nospamemail(user, domain, suffix, image, txt) {
   if (image=='') {
      link = txt;
   } else {
      link = '<img src="'+image+'" alt="'+txt+'" />';
   }
   document.write('<a href="'+'mailto:'+user+'@'+domain+'.'+suffix+'">'+link+'</a>');
}