// JavaScript Document

// email to a friend
function EmailLink(){
window.location = "mailto:"+"?subject=Man Group plc Annual Report and Accounts 2009" + "&body=" + "I thought this link might interest you:  " + document.title + "  " + location.href;
}

// bookmark function
function Bookmark()
{
	  // Get title
	  title = window.document.title;
	  // Get url
	  url = window.document.location;

	  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4))
	  window.external.AddFavorite(url, title);
	  else
	  alert("Press CTRL-D (Firefox) or COMMAND-D(Safari) to bookmark this page");
}
