<!--
function TextKopieren(FeldID)
{
    document.getElementById(FeldID).focus();
    document.getElementById(FeldID).select();

    if(document.all)
    {
        Bereich = document.getElementById(FeldID).createTextRange();
        Bereich.execCommand("Copy");
    }
}

//-->

