/**************************************************************************
 Replaces a dummy e-mail string with the real one inside a script
 in order to hide from bots collecting e-mail addresses for spamming.
 **************************************************************************/

function hideMailString (oldString, newString) {
   for (i=0; i <= (document.links.length-1); i++) {
      document.links[i].href = document.links[i].href.split(oldString)[0] + newString;
   }
}