//copyright Steve Gibson 
//Not to be used without licence
function addBookmark()
{
	var prefix = "1. Heatons - Complete Office Solutions";

	var href = window.location.href;
	var title = prefix + " " + document.title;

	var agent = navigator.userAgent.toLowerCase();
	var isMac = (agent.indexOf('mac') != -1);
	var isKonq = (agent.indexOf('konqueror') != -1);
	var isSafari = (agent.indexOf('webkit') != -1);

	if(window.external && document.all && !isMac) // MS IE Win 7
	{
		try
		{
			window.external.AddFavorite(href, title);
		}
		catch(er)
		{
			alert("Security settings of your browser prevent automatic bookmark creation.\nPlease press \"Ctrl-D\" to bookmark this page.");
		}
	}
	else if(isKonq) // Konqueror
	{
		alert("Please press Ctrl+B to bookmark this page.");
	}
	else if(window.home || isSafari || window.opera) // Firefox, Opera, modern Safari
	{
		alert("Please press " + (isMac ? "Cmd" : "Ctrl") + "+D to bookmark this page.");
	}
	else if(!window.print || isMac) // MS IE Mac, Safari 1.x
	{
		alert("Please press Cmd+D to bookmark this page.");
	}

	return false;
}