//  Customize these lines for your needs:
var n = 'info';
var d = 'dylangold.com';

//  Returns <text> coded.
function code(text) {
  var c='';
  var i=0;
  j = text.length;
  c = '';
  for(i; i<j; i++)  {
    c += '&#' + text.charCodeAt(i) + ';';
  }
  return c;
}

//  Insert the coded 'mailto' into the document.
function mailtoHidden(text) {
  var cnd = code(n)+ '&#64' + code(d);
  var c = code("mailto:") + cnd;
  if(text == null)
    document.write('<a href= "' + c + '">' + cnd + '</a>');
  else  
    document.write('<a href= "' + c + '">' + text + '</a>');
}

