
function check_top_page(top_url) {
  if (top == self) {
    if (confirm("This page is part of a frame. Do you want to see the whole page?") == true)
      self.location.href = top_url;
  }
}

