﻿// JScript File


function addToFavorites(sErrorMessage) {    //not being used

    if (sErrorMessage.toString().length == 0) {
        sErrorMessage = "Please use CTRL + D to bookmark this website." 
    }
    
    if (window.sidebar) // firefox
        window.sidebar.addPanel(document.title, location.href, "");
    else if (window.opera && window.print) { // opera
        var elem = document.createElement('a');
        elem.setAttribute('href', location.href);
        elem.setAttribute('title', document.title);
        elem.setAttribute('rel', 'sidebar');
        elem.click();
    }
    else if (document.all)// ie
        window.external.AddFavorite(location.href, document.title);

    else {
        alert(sErrorMessage);
    }    
}



