// email obfuscation

var lhs = "andydecola";
var rhs = "gmail.com";

function print_mail_to_link(){
  document.write("<a href=\"mailto");
  document.write(":" + lhs + "@");
  document.write(rhs + "\">" + lhs + "@" + rhs + "<\/a>");
}