//when the function is called, it will try add the given url with the given title to the users bookmarks
function bookmarksite (title, url){
	// try IE method
	if (document.all) {
		window.external.AddFavorite(url, title);
	}
	// otherwise use MOZ method
	else if (window.sidebar) {
		window.sidebar.addPanel(title, url, "")
	}
}
