    <!-- Hide from non-Java Script browsers

    /************************************************************************
     **** Guard                                                         
     ****                                                                 
     ****  Protects e-mail addresses by hiding them from spambots.                                                
     ****                                                               
     ****  Parameters:
     ****     userid - The userid portion of the e-mail address. (before the at sign)
     ****     author - The e-mail link text.  Usually the name of the person.
     ****     domain - The domain portion of the e-mail address. (after  the at sign)
     ****  
     **** NOTE: because this code is in a separate file, you do not need a 
     ****       //<![CDATA[ ....  //]]> construct.                                                            
     ************************************************************************/
    function Guard(userid, author, domain) {
                          
      document.writeln("<a href='mai" + "lto:" + userid + "@" + domain + "'>" + author + "</a>.");
      
    }  

    // Stop Hiding -->