function changeBack(el, cl) { document.getElementById(el).style.background = cl; }
function changeText(el, txt) { document.getElementById(el).innerHtml = txt; }
function showhideDiv(divId) { d = document.getElementById(divId); if (d.style.display=='') d.style.display='none'; else d.style.display=''; }

function showDiv(divId) { d = document.getElementById(divId); if (d) d.style.display=''; }
function hideDiv(divId) { d = document.getElementById(divId); if (d) d.style.display='none'; }

function showMe (it, box) {
        var vis = (box.checked) ? "block" : "none";
        document.getElementById(it).style.display = vis;
      }
