/*****************************************************************************\
* Main Scripts                                                                *
* Written by Tom Anderson						      *
\*****************************************************************************/


// email function obfuscates published addresses

function email(address,domain,description)
{
        var at = String.fromCharCode(64);
        if (!description) { description = address+at+domain; }
       	document.write("<a href='mailto:"+address+at+domain+"'>"+description+"</a>");
}
