function opendivs(whatdiv) { document.getElementById(whatdiv).style.display = 'block';}
function closedivs(whatdiv) { document.getElementById(whatdiv).style.display = 'none'; }
