function addBookmark(obj)
{
	var url = obj.href;
	var title = obj.title;

	if (window.sidebar)
	{ // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	}
	else if( window.external )
	{ // IE Favorite
		window.external.AddFavorite( url, title);
	}
	else if(window.opera)
	{ // Opera 7+
		void(0);
		//return false; // do nothing - the rel="sidebar" should do the trick
	}
	else
	{
		alert('Unfortunately, this browser does not support the requested action, please bookmark this page manually.');
	}
}

