var fDesc=new Array(); fDesc[0] = "ClassRoom GradeBook is a freeware grade book program for teachers. With this program, you can create your class or subject files, edit your class roster, including ID, home-contact information and comments, enter and edit grades and attendance, view and print students' records in many different and useful ways, compute and print student averages and final grades by using many options supplied by the program, and more."; 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 = ''; } }