var ie = false;
if (window.ActiveXObject)
{
	ie = true;
}


/***** BOOKMARK THIS *****/
function add_bookmark(url, title)
{
	if (ie)
	{
		window.external.AddFavorite("http://" + url, title);
	}
	else
	{
		moztext = "Page: " + title + "\n";
		moztext += "We were not able to automatically add a bookmark for your browser.\n";
		moztext += "Please press OK, and then press Ctrl+D or use your browser's bookmark feature to save this page.";
		alert(moztext);
	}
}
