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) return; if (d.style.display=='') d.style.display='none'; else d.style.display=''; }
function showDiv(divId) { d = document.getElementById(divId); if (!d) return; d.style.display=''; }
function hideDiv(divId) { d = document.getElementById(divId); if (!d) return; d.style.display='none'; }