// JavaScript Document

function addBookmark() {
	if (window.sidebar) { // firefox
		window.sidebar.addPanel(document.title, location.href,"");
	} else if( document.all ) { //MSIE
		window.external.AddFavorite( location.href, document.title);
	} else {
		alert("Please use the bookmark feature of your browser to save the location of this page. (Ctrl/Cmd + D)");
	}
}
