/* Modified to support Opera */
function bookmarksite()
{
	var nonie = 'It does not appear your browser supports this functionality. You are going to have to Favorite/Bookmark the page manually using your browser menu.';

	if (window.sidebar) // firefox
	{
		window.sidebar.addPanel(document.title, location.href, "");
	}

	else if(window.opera && window.print) // opera
	{
		var elem = document.createElement('a');
		elem.setAttribute('href',location.href);
		elem.setAttribute('title',document.title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all)// ie
	{
		window.external.AddFavorite(location.href, document.title);
	}
	else
	{
		alert(nonie);
	}
}