function focus() {
  var focus = document.getElementById("focus");
  if (focus) {
    focus.focus();
  }
}

window.onload = focus;
