var fDesc=new Array(); fDesc[0] = "HeadCount is a little program that will let teachers log in with how many of their students will be attending. Lunch or a field trip, or just attendance numbers. HeadCount lets you set up a very simple headcount program on a website. The idea is that an administrator will set up a list of teachers. Each teacher can then log in and tell how many of their students will be attending lunch that day, going on a field trip, attending an assembly, etc."; 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 = ''; } }