function smartAddBookmark(title, url)
{
	if (document.all)
	{
		// IE
		window.external.AddFavorite(url, title);
	} else if (window.sidebar)
	{
		// Firefox
		window.sidebar.addPanel(title, url, "");
	} else
	{
		alert("This feature is not supported by your browser.");
	}
}