<!--
function wjmail (address, linkname) {
    emailE=( address+'@' + 'csu' + 'chico.edu') ;

    document.write('<a href="mailto:' + emailE + '">') ;
    
    if (linkname) { document.write(linkname) ; } 
    else { document.write(emailE) ;}


    document.write('</a>') ;

}  // end function wjmail
//-->