function category(cid,parent)
{
    var path = '/kategorie.html?cid=' + cid + '&parent=' + parent;
    window.open(path,'','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=550,height=550,top=150,left=200');
    void(null);
}

function submit(value1,value2)
{
    window.opener.document.getElementById('cid').value = value1;
    window.opener.document.getElementById('kategoria').value = value2;
    window.close();
}

