<!--
function goPage (newURL) {
     // This function is called from the pop-up menus to transfer to
     // a different page. Ignore the value returned is a null string

             if (newURL != "") {
             
     // skip the menu dividers and reset the menu selection to default
                     if (newURL == "-" ) {
                             resetMenu();                    
                     } else {  
     // send page to designated URL                  
                             document.location.href = newURL;
                     }
             }
     }

     function resetMenu() {
     // resets the menu selection upon entry to this page
        document.gomenu.selector.selectedIndex = 2;
     }
//-->

<!--
// No Spam E-Mail Script

var user;

var domain;

var suffix;

function jemail(user, domain, suffix){

document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + 
suffix 
+ '">' + user + '@' + domain + '.' + suffix + '</a>');

}

//-->