function mailme(name, domain, toplevel, subj, msg){
  // Javascript Email Address Encoder
  //  Original code by www.stevedawson.com
  //  Rewritten function by digitalbrink.com
  
  //1st Parameter: Username
  //2nd Parameter: Domain
  //3rd Parameter: TopLevel Domain (com, net, biz, etc -- no ".")
  //4th Parameter: Subject ("" for nothing)
  //5th Parameter: Message to display to visitor ("Hello!")
  var first='ma';
  var second='il';
  var third='to:';
  var subject="";
  if(subj!=""){subject='?subject='+escape(subj);}
  if(msg==""){msg=name+'&#64;'+domain+'.'+toplevel;}
  document.write('<a href="');
  document.write(first+second+third);
  document.write(name);
  document.write('&#64;');
  document.write(domain);
  document.write('.');
  document.write(toplevel);
  document.write(subject);
  document.write('">');
  document.write(msg);
  document.write('\<\/a>');
}

function emailme(){
  mailme("rth","auntchoppy","com","Email from AuntChoppy.com","Email Me");
}


  //Put the following in an HTML file.
  
  //This goes in the HEAD tag.
  //  <script type="text/javascript" src="/scripts/script.js"></script>

  //This goes in the BODY tag.
  //  <script type="text/javascript">emailme();</script>
