// manualBookmarkText - Default text for the manual bookmark instructions.
var manualBookmarkText = 'This function is not supported by your browser';    

// 
// DisplayBookmarkText - Displays an alert box to the user displaying directions for how to manually add a bookmark
//
function displayBookmarkText()
{
  alert(manualBookmarkText);
}

//
// bookmarkPage - adds a bookmark for the current page and title into the browser. 
//
function bookmarkPage( ) {
	
	var title = document.title; 
 	var url = location.href;
	
        if (window.sidebar) { // firefox
              window.sidebar.addPanel(title, url,"");
        } else if( document.all ) { //MSIE
                window.external.AddFavorite( url, title);
        } else {
               alert("This function is not supported by your browser");
        }
}

