// example usage
// mailme('nigelj','text or graphic to substitute for email','subject','body','suffix');

<!--

function noharvesting(name,text,subject,body,suffix) {
  var ec = 'ec.gc.ca';
  var cciw = 'cciw.ca';
  if (suffix == 'ec') {
    str='<a href="mailto:' + name + '@' + ec;
  }
  if (suffix == 'cciw') {
    str = '<a href="mailto:' + name + '@' + cciw;
  }
  if (subject != '') {
    str += '?subject=' + subject;
    if (body != '') {
      str += '&body=' + body;
    }
  }
  str += '">';
  if (text == '') {
    if (suffix == 'ec') {
      str += name + '@' + ec;
    }
    if (suffix == 'cciw') {
      str += name + '@' + cciw;
    }
  } else {
    str += text;
  }
  str += '</a>';
  document.write(str);
}

//-->