function addToFavourites(url ,title) {
	if (document.all) {
		window.external.AddFavorite(url,title);
		return false; // All done - don't follow link this function is called from via onClick;
	} else {
		return true; // Can't do it as browser doesn't really support it, follow link from underyling a tag to a help page
	}
}