function email(user, domain)
{

    // Simple script for the moderately paranoid. 
    // Creates an email link by joining the user and domain 
    // parts outside of the html page so nasty little 
    // robots can't get at the full address
    address=(user + '@' + domain)
    document.write('<a href="mailto:' + address + '">' + address + '</a>')
}
