// JavaScript Document

function writeMail(domain,name, suffix) {
document.write('<a href="mai')
document.write('lto:' + name + '&#64;' + domain + '.' + suffix +'">');
document.write(name + '&#64;' + domain + '.' + suffix);
document.write('<\/a>');
document.write('<!-- mailmunge bit -->');
}
