// hiding email addresses with in the HTML copy as created by FCKeditor
// needs this function to reassemble the email address
function mt(name,domain,subject,body) {
  location.href = 'mailto:' + name + '@' + domain + '?subject=' + subject + '&body=' + body;
}
