var favori = {
	title : document.title,
	url : document.location.href,
	ekle : function(){
		if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(this.title, this.url,false);
		} else if( window.external ) { // IE Favorite
			window.external.AddFavorite(this.url, this.title);
		}else if(window.opera && window.print) { // Opera Hotlist
			return true;
		}
	},
	anaSayfa : function(){
		if ( window.external ) { // IE Favorite
			document.body.style.behavior='url(#default#homepage)';
			document.body.setHomePage(this.url);
		}
	}
}
