function writeEmail(name,domain)
{
document.write('<!--Spam protection; writes email address using script.--> ');
document.write('<a href="mailto:');
document.write(name);
document.write('@');
document.write(domain);
document.write('">');
document.write(name);
document.write('@');
document.write(domain);
document.write('</a>');
}
