/*
 -----------------------------------------------------------------------------------------------
  Code snippet Nospam for Website Baker v2.6.x
  Licencsed under GNU, written by Christian Sommer (Doc)
  Original code from:
  http://www.tutorials.de/forum/php-tutorials/223704-mailadressen-vor-spambots-verbergen.html
 -----------------------------------------------------------------------------------------------
*/

function funktion(o,a,x) {
  o.onmouseover = '';
  addr = '';
  a = unescape(a);
  for(c =0; c < a.length; ++c) {
    addr+=String.fromCharCode(a.charCodeAt(c) - x);
  }
  o.parentNode.setAttribute('href', 'mailto:' + addr);
}
