function goto_club_page(frameset_modifier, thepage)
{
  var formsuffix = ''
  if (goto_club_page.arguments.length > 2) {
    formsuffix = goto_club_page.arguments[2]
  }
  selectedclub = document.forms["select_club_form"+formsuffix].elements["select_club"].selectedIndex;
  theclub = document.forms["select_club_form"+formsuffix].elements["select_club"].options[selectedclub].value;
  if ((theclub) && (theclub != " ") && (theclub != "")) {
    newframe = path_modifier + frameset_modifier + "clubs/club_" + theclub + ".php";
    if (frameset_modifier != "")
      top.location.href = newframe;
    else
      location.href = newframe;
  }
}