// Allow bookmarking of current page

var urlAddress = location.href;
var pageName = document.title;
function addToFavorites() {
	if (window.sidebar) { // Firefox
		window.sidebar.addPanel(pageName,urlAddress,"");
	} else if (window.external) { // IE
		window.external.AddFavorite(urlAddress,pageName) 
	} else {
		alert("Sorry! Your browser doesn't support this function."); 
	}
}