var bannersRight;
function checkScrolled(){
       bannersRight = document.getElementById("bannersRight");
       bannersRight.style.position = "absolute";
       if (window.screen.width < 1067)
       {
              bannersRight.style.posLeft = 1067 - 260;
       }
       else
       {
              bannersRight.style.posLeft = window.screen.width - 260;
       }

       bannersRight.style.posTop = document.body.scrollTop + 97;
       //alert(document.body.scrollLeft);
       //window.screen.width - 260 ----------- 764
       //bannersRight.offsetParent.clientWidth
       //window.screen.width
}
