function mailfriend()
{
ml = "mailto:?subject=Check out the " + document.title;
ml += "&body=I thought you might be interested in the " + document.title;
ml += ". You can view it at, " + location.href; 
location.href = ml;
}

function addtofav() 
{ 
	if (window.external) 
	{ window.external.AddFavorite(urlAddress,pageName) 
	} 
	else 
	{ alert("Sorry! Your browser doesn't support this function."); 
	} 
}
