
//	Add to Favorites
function addThisPageToFavorites()
	{
		if (window.external) 
		{ 
			window.external.AddFavorite(location.href, document.title) 
		} 
		else 
		{ 
			alert("Sorry! Your browser doesn't support this function."); 
		}
	} 

//	Email this page

	function emailLinkToThisPage()
	{
		window.open('mailto:?subject=' + document.title + '&body=' + location.href);
	}