function addToFavorites()
{
	txt = "Bookmark this page:  (Ctrl+D)"
	var ver = navigator.appName
	var num = parseInt(navigator.appVersion)
	if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) 
	{
		if (window.external)
		{
			window.external.AddFavorite(document.URL,document.title)
		}
		else
		{ 
			alert("Sorry! Your browser doesn't support this function.");
		}
	}
	else
	{
		alert("Sorry, you need to use Ctrl+D to bookmark this page.");
	}
}

function mailpage()
{
	mail_str = "mailto:?subject=netWMD Article: " + document.title;
	mail_str += "&body=I thought you might be interested in the article, " + document.title;
	mail_str += ". You can view it at: " + location.href; 
	location.href = mail_str;
}

