function description(d) {
    d = document.getElementById(d);
    d.style.display = (d.style.display == 'table-row') ? 'none' : 'table-row';
}