//
// 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");
        }
}

