
function QuickJump(Formular)
{
    var Element = Formular.Ziel.selectedIndex;
    if (Formular.Ziel.options[Element].value != 0) 
    {
    location = Formular.Ziel.options[Element].value;
    }   
}

function append(wo, was) 
{
   document.getElementById(wo).value += was;
}


function QuickJump(Formular)
{
    var Element = Formular.Ziel.selectedIndex;

    if (Formular.Ziel.options[Element].value != 0) 
    {
        location = Formular.Ziel.options[Element].value;
    }   
}
