// This file is used to hide the email links from spiders and spambots

// info

function makeinfo() {
  first = "info";
  second = "@";
  third = "midlandwestern"
  fourth = "dressage.com";
  info = first + second + third + fourth;
}

function sendtoinfo() {
  makeinfo();
  window.document.location.href = 'mailto:' + info;
}

function writeinfo() {
  makeinfo();
  window.document.write('<a href="#" onClick="sendtoinfo();return false;" title="click to send an email" onMouseOver="window.status=\'\';return true;">' + info + '</a>');
}

// vida

function makevida() {
  first = "vidatansey";
  second = "@";
  third = "hotm"
  fourth = "ail.com";
  vida = first + second + third + fourth;
}

function sendtovida() {
  makevida();
  window.document.location.href = 'mailto:' + vida;
}

function writevida() {
  makevida();
  window.document.write('<a href="#" onClick="sendtovida();return false;" title="click to send an email" onMouseOver="window.status=\'\';return true;">' + vida + '</a>');
}

// others

//function sendtozzzz() {
//  first = "xxxx";
//  second = "@";
//  third = "xxxx"
//  fourth = "xxxx";
//  zzzz = first + second + third + fourth;
//  window.document.location.href = 'mailto:' + zzzz;
//}