function NumberOfViews(resourceId,onlyPerSession){this.onlyPerSession=onlyPerSession||false;this.resourceId=resourceId;return onlyPerSession?this.incrementViewCountPerSession():this.incrementViewCount();}NumberOfViews.prototype.incrementViewCount=function(){var request=new RequestMessage("POST","/bigbrother/views/"+this.resourceId+"/count.c4");request.asyncSend(new Parameters(),function(response){});};NumberOfViews.prototype.incrementViewCountPerSession=function(){var cookieName="c4.already.viewed";var cookies=new Cookies();var cookieValue=cookies.get(cookieName)||"";if(cookieValue.indexOf(this.resourceId)>=0){return null;}this.incrementViewCount();cookieValue=cookieValue.length>0?cookieValue+"|"+this.resourceId:this.resourceId;return cookies.set(cookieName,cookieValue);};