var ForumSpyRemoter=Class.create({categoryIds:[],threeColumnMode:false,topForumActionCatId:53,col1Template:"spyRowCol1Template",col2Template:"spyRowCol2Template",col3Template:"spyRowCol3Template",spyHdr:"spyHdrRow",rowClass:"spyPrePopulated",tssFormat:"HMIL:MINUTE",tssFormat3Col:"TO[MONTH-DAY-SHORTYEAR] HMIL:MINUTE",pageNumber:1,ps:{row:"spyrow_",picAndVid:"spyrow_picandvid_",pic:"spyrow_pic_",vid:"spyrow_vid_",sticky:"spyrow_sticky_",bulletin:"spyrow_bulletin_",photoRating:"spyrow_photoRat_",timestamp:"spyrow_ts_",photoRate:"photoRating_",col1:"spyCol1_",col2:"spyCol2_",col3:"spyCol3_"},initialize:function(a){if(a.categoryIds!=null){this.categoryIds=a.categoryIds}else{if(a.all==true){this.categoryIds=[-1]}}if(a.threeColMode!=null){this.threeColumnMode=a.threeColMode}if(a.pageNum!=null){this.pageNum=a.pageNum
}if($A(this.categoryIds).size()==1&&this.categoryIds[0]==this.topForumActionCatId){this.categoryIds[0]=-1}if(this.pageNum>1){return}Event.observe(window,"load",this.setup.bindAsEventListener(this))},setup:function(){Event.observe(window,"unload",this.unsubscribe.bindAsEventListener(this));document.observe("forumSpy:newForumPost",this.newPost.bindAsEventListener(this));$A(this.categoryIds).each(function(a){ForumSpyManager.subscribeToCategory(a)})},unsubscribe:function(){this.categoryIds.each(function(a){ForumSpyManager.unSubscribeFromCategory(a)})},newPost:function(a){var c=a.memo;if(c==null){return}var b=JSON.parse(c);this.handleNewPost(b)},handleNewPost:function(a){if(a==null||a.topicId<=0){return}this.removeRow(a.topicId);this.renderNewRow(a);this.renderNewPostImages(a);var b=$(this.ps.row+a.topicId);
b.effect=new Effect.Highlight(b,{duration:6,startcolor:"#440000",endcolor:"#000000"})},removeRow:function(d){var b=$(this.ps.row+d);if(b!=null){b.remove()}else{var c=$$("."+this.rowClass);if(c!=null&&c.size()>0){var a=c[c.size()-1];a.remove()}}},renderNewRow:function(b){var e=$(this.spyHdr);var c=new Element("tr",{id:this.ps.row+b.topicId});var h=new Element("td",{id:this.ps.col1+b.topicId});var g=new Element("td",{id:this.ps.col2+b.topicId});var f=null;c.insert(h);c.insert(g);if(this.threeColumnMode){f=new Element("td",{id:this.ps.col3+b.topicId});c.insert(f)}e.insert({after:c});$Templates().process(h.id,this.col1Template,b);$Templates().process(g.id,this.col2Template,b);if(this.threeColumnMode){$Templates().process(f.id,this.col3Template,b)}var a=$(this.ps.timestamp+b.topicId);if(a!=null){var d=null;
if(!this.threeColumnMode){d=formatDateTimeTss(b.tssLastPostDateParams,this.tssFormat)}else{d=formatDateTimeTss(b.tssLastPostDateParams,this.tssFormat3Col)}a.innerHTML=d}c.addClassName(this.rowClass)},renderNewPostImages:function(b){if(b.attach&&b.video){var g=$(this.ps.picAndVid+b.topicId);if(g!=null){g.show()}}else{if(b.video){var a=$(this.ps.vid+b.topicId);if(a!=null){a.show()}}else{if(b.attach){var c=$(this.ps.pic+b.topicId);if(c!=null){c.show()}}}}if(b.sticky){var d=$(this.ps.sticky+b.topicId);if(d!=null){d.show()}}if(b.bulletin){var f=$(this.ps.bulletin+b.topicId);if(f!=null){f.show()}}if(b.photoRating){var e=$(this.ps.photoRating+b.topicId);if(e!=null){e.show()}}}});