//spam email JavaScript
function nospam(name,domain) {
  thisLocation = "mailto:" + name + "@" + domain;
  document.location = thisLocation;
}