/* a small but powerful routine to avoid spam emails */
function mail(email, action)
{
  while (email.search(/\|/) != -1)
  {
    email = email.replace(/\|/,"");
  }

  if (action == 0) window.location = "mailto:" + email;
  if (action == 1) document.write(email);
}
