// JavaScript Document

function addWebsiteToFavorites()
{ 
	var urlAddress = "http://www.tools.webcraft.co.il";
	var pageName   = "Webcraft Tools";

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

function addCurrentPageToFavorites()
{
	// TBD
}

