<!-- Hide script from old browsers functions for new window mouseovers, onclicks, and mouseouts
function bookmark(url, description)
{
    if (navigator.appName=='Microsoft Internet Explorer')
    {
        window.external.AddFavorite(url, description);
    }
    else if (navigator.userAgent.toLowerCase().indexOf("cs 2000") != -1)
    {
        alert("CompuServe users hit CTRL++ or click the checkmark at the top right side of the window frame to add this page to your favorites.");
    } 
    else if (navigator.appName=='Netscape')
    {
        alert("Hit CTRL+D on PC or Cmd+D on Mac to add a bookmark to this site.");
    } 
}
//--> 