// JavaScript Document

function addWebsiteToFavorites()
{ 
	urlAddress = "http://www.aquariumsphere.com";
	pageName   = "Aquarium Sphere";

	if (window.external) { 
		window.external.AddFavorite(urlAddress,pageName);
	} else { 
		alert("Sorry! Your browser doesn't support this function."); 
	} 
} 

function addCurrentPageToFavorites()
{
	// TBD
}
