// Admin Popup Begin
function popup (url) {
 fenster=window.open(url, "popup", "width=800,height=600,status=yes,scrollbars=yes,resizable=yes");
 fenster.focus();
 return false;
}
// Admin Popup End
//MobileMoney Script Begin
//MobileMoney Script End


function Go (select) {
  var wert = select.options[select.options.selectedIndex].value;
  if (wert == "leer") {
    select.form.reset();
    parent.frames["unten"].focus();
    return;
  } else {
    if (wert == "ende") {
      top.location.href = parent.frames[1].location.href;
    } else {
      parent.frames["unten"].location.href = wert;
      select.form.reset();
      parent.frames["unten"].focus();
    }
  }
}