// Copyright (c) 2006 Donald Lessau. All rights reserved.
// 20031212 nospam-o-matic
// Created: 20031212
// Updated: 20060317; 20100709: new mask and removed unnec RegExp
var mask = "mail.";     // mask will be removed/replaced by routines below
var replacewith = "";  // 
function ns(a) { // decode href, call in onMouseOver
  a.href = a.href.replace(mask, replacewith);
}
function nsp(e) { // print email address
  document.write(e.replace(mask, replacewith));
}
function ns2(a) { // decode href, keeps innerHTML if it's an email address
  text = a.innerHTML;
  a.href = a.href.replace(mask, replacewith);
  a.innerHTML = text;
}


