function changeColor(id, color)
{
    if (document.getElementById) {
        e = document.getElementById('table_' + id);
        e.style.borderColor = '#' + color;

        e = document.getElementById('th_' + id);
        e.style.color = '#' + color;
    }
}
