function bookmark(url, description) {
    netscape="Please press CTRL+D to bookmark the site."
    if (navigator.appName=='Microsoft Internet Explorer') {
        window.external.AddFavorite(url, description);
    } else if (navigator.appName=='Netscape') {
        alert(netscape);
    }
}
