function bookmarkThisPage() {
	if (window.sidebar) {
		window.sidebar.addPanel(document.title,window.location, "");
	} else if (window.external) {
		window.external.AddFavorite(window.location,document.title);
	}
}
function bookmarkLinkText(anchor) {
	if (window.sidebar) {
		document.write("<a " + anchor + ">" + "Bookmark this Page</a>");
	} else if (window.external) {
		document.write("<a " + anchor + ">" + "Add Page to Favorites</a>");
	}
}