// This file is used to hide the email links from spiders and spambots

// leinster chair

function makeleinsterchair() {
  first = "chair";
  second = "@";
  third = "leinster"
  fourth = "dressage.com";
  lrrep = first + second + third + fourth;
}

function writeleinsterchair() {
  makeleinsterchair();
  window.document.write('<a href="#" onClick="sendtoleinsterchair();return false;" title="click to send an email" onMouseOver="window.status=\'\';return true;">' + lrrep + '</a>');
}

function sendtoleinsterchair() {
  makeleinsterchair();
  window.document.location.href = 'mailto:' + lrrep;
}

function sendtocolinmc() {
  first = "colin";
  second = "@";
  third = "newsage"
  fourth = "ncyonline.com";
  colinmc = first + second + third + fourth;
  window.document.location.href = 'mailto:' + colinmc;
}

function sendtokay() {
  first = "kayzita";
  second = "@";
  third = "eir"
  fourth = "com.net";
  kay = first + second + third + fourth;
  window.document.location.href = 'mailto:' + kay;
}

function sendtokeith() {
  first = "keithjack";
  second = "@";
  third = "iol"
  fourth = "free.ie";
  keith = first + second + third + fourth;
  window.document.location.href = 'mailto:' + keith;
}