function CMSMovieChannel(allowFullScreen,playerWidth,playerHeight,objectWidth,stamp,inRow){let $this=this;let ratio=Round(132/99,2);let margin=Round(2/100*parseInt(objectWidth),0);let widthAvaliable=parseInt(objectWidth)-inRow*margin*2;let imageWidth=Round(widthAvaliable/inRow,0)-1;let imageHeight=Round(imageWidth/ratio,0);this.showMyVideos=function(pid){};this.play=function(mid){let ytplayer=document.getElementById("ytplayer_"+stamp);ytplayer.setAttribute("src",location.protocol+"//www.youtube.com/embed/"+mid+"?autoplay=1");let offset=45;let elementPosition=ytplayer.getBoundingClientRect().top;window.scrollTo({top:elementPosition+window.scrollY-offset,behavior:"smooth"})};function Round(n,k){let factor=Math.pow(10,k+1);n=Math.round(Math.round(n*factor)/10);return n/(factor/10)}}