function kategoria(id,cid)
{
    var path = '/kategorie.html?id=' + id + '&cid=' + cid;
    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,value3)
{
    window.opener.document.getElementById('cid['+value1+']').value = value2;
    window.opener.document.getElementById('kategoria['+value1+']').value = value3;
    window.close();
}

