    function addToFavorites(url, title) {
    	var sURL = window.location;
    	var sText = title;
    
    	try
    	{	if (window.sidebar)
    			window.sidebar.addPanel(sText, sURL, "");
    		else if (window.external)
    			window.external.AddFavorite(sURL, sText);
    		else if (window.opera && window.print)
    		{	var oA = document.createElement('a');
    			oA.setAttribute('rel','sidebar');
    			oA.setAttribute('href', sURL);
    			oA.setAttribute('title', sText);
    			oA.click();
    		}
    	}
    	catch (e)
    	{
    	}
    }

