// This file is used to hide the email links from spiders and spambots

// dressage ireland youthclub

function makediy() {
  first = "diy";
  second = "@";
  third = "dressageire"
  fourth = "land.ie";
  diy = first + second + third + fourth;
}

function writediy() {
  makediy();
  window.document.write('<a href="#" onClick="sendtodiy();return false;" title="click to send an email" onMouseOver="window.status=\'\';return true;">' + diy + '</a>');
}

function sendtodiy() {
  makediy();
  window.document.location.href = 'mailto:' + diy;
}