var fDesc=new Array(); fDesc[0] = "evDaily is a simplified version of evPlanIt. Built for those who review Event schedules, but do not need the comprehensive planning and scheduling abilities of evPlanIt.
The calendar at the top-left displays a button for each day in the current month that has at least one Event scheduled. The button for the current day is depressed. The table at the bottom displays all Events and Functions for the selected day. The top-right area displays information about the Event/Function that is active in the table."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }