function QuickJump(Formular)
       {
        var Element = Formular.Ziel.selectedIndex;
        var Frameziel = Formular.Ziel.options[Element].frameziel;

        if (Formular.Ziel.options[Element].value != 0)
         {
         if(Frameziel == "extern")
          {
          window.open(Formular.Ziel.options[Element].value);
          }
         else
        {
        location = Formular.Ziel.options[Element].value;
        }
       }
      }
