function addToFavorites() {
	if (window.sidebar&&window.sidebar.addPanel)
		window.sidebar.addPanel(document.title, document.URL,"");
	else{
		if(window.external){
			window.external.AddFavorite(document.URL,document.title);
		}
		else{
			alert("Sorry! Your browser does not support this feature.");
		}
	}
}