function isThin() {
  return screen.width < 1010;
}

function sizeBasedRedirect(context) {
  if (isThin()) {
    window.top.location.pathname = context + "/index-thin.vm";
  }
}
