function specm() {
  ecmdu()
  ecmda()
  ecmto()
  ecmbo()
  ecmro()
  ecmbk()
  ecmfc()
  ecmin()
  ecmwm()
  ecmbm()
  
}


function ecmdu() {
  
  var ecm_recip = "duck";
  var ecm_url = "boomersaurus.com";
  var email = ecm_recip + "@" + ecm_url;
  
  if (!document.getElementById("ecmdu")) return false;
  
  var spanobj = document.getElementById("ecmdu");
  var anch = document.createElement("a");
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}


function ecmda() {
  
  var ecm_recip = "dave";
  var ecm_url = "boomersaurus.com";
  var email = ecm_recip + "@" + ecm_url;
  
  if (!document.getElementById("ecmda")) return false;
  
  var spanobj = document.getElementById("ecmda");
  var anch = document.createElement("a");
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}


function ecmto() {
  
  var ecm_recip = "tom";
  var ecm_url = "boomersaurus.com";
  var email = ecm_recip + "@" + ecm_url;
  
  if (!document.getElementById("ecmto")) return false;
  
  var spanobj = document.getElementById("ecmto");
  var anch = document.createElement("a");
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}


function ecmbo() {
  
  var ecm_recip = "bob";
  var ecm_url = "boomersaurus.com";
  var email = ecm_recip + "@" + ecm_url;
  
  if (!document.getElementById("ecmbo")) return false;
  
  var spanobj = document.getElementById("ecmbo");
  var anch = document.createElement("a");
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}




function ecmro() {
  
  var ecm_recip = "ronnie";
  var ecm_url = "boomersaurus.com";
  var email = ecm_recip + "@" + ecm_url;
  
  if (!document.getElementById("ecmro")) return false;
  
  var spanobj = document.getElementById("ecmro");
  var anch = document.createElement("a");
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}


function ecmbk() {
  
  var ecm_recip = "bookings";
  var ecm_url = "boomersaurus.com";
  var email = ecm_recip + "@" + ecm_url;
  
  if (!document.getElementById("ecmbk")) return false;
  
  var spanobj = document.getElementById("ecmbk");
  var anch = document.createElement("a");
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}


function ecmfc() {
  
  var ecm_recip = "fanclub";
  var ecm_url = "boomersaurus.com";
  var email = ecm_recip + "@" + ecm_url;
  
  if (!document.getElementById("ecmfc")) return false;
  
  var spanobj = document.getElementById("ecmfc");
  var anch = document.createElement("a");
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}


function ecmin() {
  
  var ecm_recip = "info";
  var ecm_url = "boomersaurus.com";
  var email = ecm_recip + "@" + ecm_url;
  
  if (!document.getElementById("ecmin")) return false;
  
  var spanobj = document.getElementById("ecmin");
  var anch = document.createElement("a");
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}

function ecmwm() {
  
  var ecm_recip = "webmaster";
  var ecm_url = "boomersaurus.com";
  var email = ecm_recip + "@" + ecm_url;
  
  if (!document.getElementById("ecmwm")) return false;
  
  var spanobj = document.getElementById("ecmwm");
  var anch = document.createElement("a");
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}

function ecmbm() {
  
  var ecm_recip = "boomersaurus";
  var ecm_url = "boomersaurus.com";
  var email = ecm_recip + "@" + ecm_url;
  
  if (!document.getElementById("ecmbm")) return false;
  
  var spanobj = document.getElementById("ecmbm");
  var anch = document.createElement("a");
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}


window.onload = specm;

