<!--

function insertMail()
{
    //spam protection
    cmd = "mailto:";
    my_at = "@";
    my_user = "swallace";
    my_domain = "vancouver.wsu.edu";
    document.writeln('<a href="' + cmd + my_user + my_at + my_domain + '">');
    document.writeln(my_user + my_at + my_domain);
    document.writeln('</a>');
}

//-->