function bookmark()
{
	url = location.href;
	title = document.title;
	
	if (window.sidebar) //Mozilla Firefox
	{
		window.sidebar.addPanel(title, url, "");
	}
	else if (window.sidebar) //IE Favorite
	{
		window.external.AddFavorite(url, title);
	}
	else if (window.opera && window.print) //Opera
	{
		var a = document.createElement('A');
		if (!a) return false; //IF Opera 6
		a.setAttribute('rel', 'sidebar');
		a.setAttribute('href', url);
		a.setAttribute('title', title);
		a.click();
	}
	else
	{
		alert("Your browser doesn't support automatic bookmarking. Press Ctrl-D to bookmark the page manually!");
	}
	return false;
}

