// Bookmark Script

function addToFavorites()
	{
	title = "Icesations | Delicious Milk Fruit Bars";
	url = "http://www.icesations.com";
	
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,""); }
		
	else if(window.external) { // IE Favorite
		window.external.AddFavorite( url, title); }
		
	else { alert("Sorry! Your browser doesn't support this function. Please bookmark this page manually."); } 
	}