// JavaScript Document
function setzeWert()
{
    for(i=0;i<document.form1.auswahl.length && !document.form1.auswahl[i].checked; i++);
    if ( !document.form1.auswahl[i].checked )
    {
    alert('nix ausgwählt');
    return;
    }
    wert = document.form1.auswahl[i].value;
    window.opener.document.getElementById('ziel').value = wert;
    self.close();
}

