function Scroller() {
  var topPos = document.body.scrollTop;
  document.getElementById("RegBoxInh").style.top = (topPos+110);
  if(topPos > 150){
    var MoveTo = (topPos-150);
    document.getElementById("APPSBAR").style.top = MoveTo;
  }
  else{
    document.getElementById("APPSBAR").style.top = '0px';
  }
  window.setTimeout("Scroller()",1);
}
setTimeout("Scroller()",1);
