    function addToFav(){

		title = window.document.title;
		url = window.document.location;

//    	if (window.sidebar)
//    		window.sidebar.addPanel(title, url, "");
//    	else if(window.opera && window.print){
//    		var elem = document.createElement('a');
//    		elem.setAttribute('href',url);
//    		elem.setAttribute('title',title);
//    		elem.setAttribute('rel','sidebar');
//    		elem.click();
//    	} else if(document.all)
			window.external.AddFavorite (window.document.location, window.document.title);
    
    }


