function decipher(text_array)
{
  var text_string = ''
  for (i = 0; i < text_array.length; i++)
  {
    text_string += String.fromCharCode(text_array[i])
  }
  return text_string
}


function hide_email(recipient_name,email_array,domain_array)
{
  var email_string = decipher(email_array) + '@' + decipher(domain_array)
  document.write('<a class="mail" href="mailto:&quot;'+recipient_name+'&quot; <'+email_string+'>">'+email_string+'</a>')
}
