function addToFavorites(pageName)
{
	addBookmark(pageName,window.location.href);
}
function addBookmark(title,url)
{
	if (window.sidebar)
	{
		window.sidebar.addPanel(title, url,"");
	}
	else if(document.all)
	{
		window.external.AddFavorite( url, title);
	}
	else if(window.opera && window.print)
	{
		return true;
	}
}

function setAsHomepage(url)
{
	if (navigator.appName == "Microsoft Internet Explorer")
	{
		document.body.style.behavior='url(#default#homepage)';
		document.body.setHomePage(url);
	}
	else
	{
		alert("Your browser do not allow us to set your homepage automatically, you will have to do this manually.");
	}
}