
function hidemail(tgt,txt) {
  // hide the e-mail address
  var newtgt = 'to:'+tgt+'@';
  newtgt = newtgt+'theMaplewoodStudio';
  newtgt = newtgt+'.com';
  document.write('<A href="mail'+newtgt+'">'+txt+'</a>');
}

function hidenonfunctioningemail(tgt) {
  // hide the e-mail address
  var newtgt = tgt+'@';
  newtgt = newtgt+'theMaplewoodStudio';
  newtgt = newtgt+'.com';
  document.write(newtgt);
}


