function show_folgeseite1(seite)
  {
    neufenster=window.open(seite,"folgefenster","scrollbars=yes,toolbar=no,status=no,resizable=yes,menubar=no,location=no,directories=no,width=670,height=700");
  }
  
function doGo()
  {
    var lIndex  = document.selectform.selectmenu.selectedIndex;
    var lURL    = document.selectform.selectmenu[lIndex].value.substring(1);
    var lTarget = document.selectform.selectmenu[lIndex].value.substring(0,1)
    
    if (lTarget == "g")
      document.location = lURL;
    else
    {
      var lNF = window.open(lURL, "nf" + lIndex, "");
      lNF.focus();
    }
  } // doGo