function SearchPage()
{
  // set the focus to the search input field and select the content
  with(document.getElementById('search_content'))
  {
    focus();
    select();
  }
}

function GuestbookPage()
{
  // set the focus to the first input field
  document.getElementById('name').focus();
}
