/* 
=========================================================================================== CREDITS
Copyright             2008 JPL Productions
Author                Larry Daughenbaugh
=========================================================================================== BEGIN JAVASCRIPT
*/													

/* ======================================================================================== BOOKMARK PAGE */
function bookmark(url,title){
    if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
        window.external.AddFavorite(url,title);
    // opens bookmark window up in Firefox but in the sidebar panel
    /*
    } else if (navigator.appName == "Netscape") {
        window.sidebar.addPanel(title,url,"");
    */
    } else {
        alert("Please press Control+D (or Command+D) to bookmark this page.");
    }
}