function getNumberOfVideosWatched(){var cookies=new Cookies();return cookies.get("c4.videos.watched.count");}function incrementVideosWatchedCount(){var cookies=new Cookies();var numberOfVideosWatchedInt=parseInt(getNumberOfVideosWatched());if(isNaN(numberOfVideosWatchedInt)){numberOfVideosWatchedInt=0;}var numberOfVideosWatched=numberOfVideosWatchedInt+1;cookies.set("c4.videos.watched.count",numberOfVideosWatched);}function resetVideoWatchCount(){var cookies=new Cookies();cookies.set("c4.videos.watched.count",1);}function show(message){alert(message);}