var alink, atext, pret, postt;

function addfav()
{
	if (navigator.appName.indexOf("Explorer") == -1 || navigator.appVersion.indexOf("Netscape") != -1)
	{
		alert("You are not using Internet Explorer.\nPlease bookmark the page manually.");
	}
	else
	{
		window.external.AddFavorite(document.location.href,document.title);
	}
	return true;
}

function link2us()
{
	atext = document.getElementById ("atext");
	alink = document.getElementById ("alink");
	pret = document.getElementById ("pret");
	postt = document.getElementById ("postt");
	atext.value = document.title;
	alink.value = document.location.href;
	if (navigator.appVersion.indexOf("MSIE") != -1)
	{
		postt.value = "<br />" + description.content;
	}
	var frm = document.getElementById ("frm");
	frm.submit();
}
