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

