var FavoriteBoxUpdateTimer;var FavoriteBox=Class.create();FavoriteBox.prototype={checkCount:0,checkCountMax:20,loadTime:1000,postUrl:"/ajax/mypage/addFavoriteBox",updateAreaId:"FavoriteBox",MESS_FAVORITE_BOX_LOADING:"favoriteBox registering...",MESS_FAVORITE_BOX_COMPLETE:"favoriteBox regist completed.",rssUrl:"",afterBackUrl:"",initialize:function(){},regist:function(a,b){clearInterval(FavoriteBoxUpdateTimer);window.status=this.MESS_FAVORITE_BOX_LOADING;if(!b){b="";}this.rssUrl=a;this.afterBackUrl=b;new Ajax.Request(this.postUrl,{method:"post",postBody:$H({command:"regist",rssUrl:a}).toQueryString(),onComplete:this.completeHandler});},completeHandler:function(a){window.status=favoriteBox.MESS_FAVORITE_BOX_COMPLETE;var b=a.responseText;var c="";if(b.indexOf("complete")!=-1){c="お気に入りRSSに登録しました。";}else{if(b.indexOf("countOver")!=-1){c="既に100件登録されています。";}else{if(b.indexOf("notLogin")!=-1){c="このお気に入りRSSを登録するには\nログインが必要です。";var e=favoriteBox.rssUrl;var d=favoriteBox.afterBackUrl;var e=encodeURIComponent(encodeURIComponent(favoriteBox.rssUrl));var d=encodeURIComponent(encodeURIComponent(favoriteBox.afterBackUrl));window.location="http://www.iza.ne.jp/mypage/favorite/regist/"+e+"/"+d+"/";return true;}else{if(b.indexOf("repeat")!=-1){c="このお気に入りRSSは既に登録されています。";}else{c="登録に失敗しました。\nカスタマーサポートまでご連絡ください。";}}}}alert(c);return true;}};favoriteBox=new FavoriteBox();
