// Construct a mailto: URL with all the details
/*
    Construct a mailto: URL of the form
	mailto:<userid>@neovictorian.<tld>
    and go to it.
*/
function sendMail(userid, tld)
{
    var domain = "neovictorian";
    document.location = "mailto:" + userid + "@" + domain + "." + tld 
}
/*
    Construct a mailto: URL based on a key into a lookup table
*/
function sendMailByKey(key)
{
    if (key=="donaldsms") {
        document.location = "mailto:2502139470@msg.telus.com"
    }
}

