 // create bookmark

 function CreateBookmarkLink() {
    var title = "MindCrap - Daily crap for your mind!"; 
    var site_url = "http://www.mindcrap.com";
    
    isIE = navigator.userAgent.toUpperCase().indexOf('MSIE') >= 0;
    isFF = navigator.userAgent.toUpperCase().indexOf('FIREFOX') >= 0;
    
    if (isFF) {
        window.sidebar.addPanel(title, site_url,"");
    } else if (isIE) {
        window.external.AddFavorite( site_url, title); 
    } else {
        return true;
    }
}

