<!--

// Allows a smooth scroll down to the place with named anchor. Where anchor's name is: 'link1', 'link2', and etc.
function go(n) {
  var t = (n < 5) ? n * 500 : n * 300;
  xWinScrollTo(window, 0, xPageY('link' + n), t);
  return false;
}

// Allows a smooth scroll back up to the top of the page.
function goTop() {
  xWinScrollTo(window, 0, 0, 500);
  return false;
}

//-->