function createBookmark() {
	if (window.sidebar) // Mozilla Firefox Bookmark
		window.sidebar.addPanel(document.title, location.href, '');
	else if (window.external) // IE Favorite
		window.external.AddFavorite(location.href, document.title);
	else // all others
		alert("Please press CTRL+D to bookmark this page.");
}