

function addBookmark(title, url) {
        if (window.sidebar) { // <strong class="highlight">firefox</strong>
              window.sidebar.addPanel(title, url,"");
        } else if( document.all ) { //MSIE
                window.external.AddFavorite( url, title);
        } else {
               alert("To bookmark this page press Ctrl+D");
        }
}
 

