<!-- 
function Go (select) {
  var wert = select.options[select.options.selectedIndex].value;
  if (wert == "leer") {
    select.form.reset();
    parent.frames["self"].focus();
    return;
  } else {
    if (wert == "ende") {
      top.location.href = parent.frames[1].location.href;
    } else {
      parent.frames["self"].location.href = wert;
      select.form.reset();
      parent.frames["self"].focus();
    }
  }
}

function winopen()	{
window.open('', 'DruckWindow', 'toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=880,height=900,left=30,top=150')
}

-->