function showPerson() {
  per = document.form1.personen[document.form1.personen.selectedIndex].value;
  if (per != -1) {
    window.location.href = 'ergebnis.php?typ=person&per=' + per;
  }
}

function showGipfel() {
  gpf = document.form1.gipfel[document.form1.gipfel.selectedIndex].value;
  if (gpf != -1) {
    window.location.href = 'ergebnis.php?typ=gipfel&gpf=' + gpf;
  }
}

function showGebiete() {
  geb = document.form1.gebiete[document.form1.gebiete.selectedIndex].value;
  if (geb != -1) {
    window.location.href = 'ergebnis.php?typ=gipfel&sort=hasc&geb=' + geb;
  }
}

function checkRadio(but) {
  if (but == 'gipfel') {
    document.form1.typ[0].checked = true;
  }
  if (but == 'person') {
    document.form1.typ[1].checked = true;
  }
  if (but == 'datum') {
    document.form1.typ[2].checked = true;
  }
}
