function ConfDelete(txt, fil, id)
{
        var delconf = confirm("Do you really want to delete " + txt + " #" + id +  " ?");
        if (delconf) { window.location = fil + "?id=" + id + "&txt=" + txt; }
}
