var fDesc=new Array(); fDesc[0] = "A2Z Gradebook is a teacher's grading program which stores grades, calculates averages, and generates reports. This version supports assignment categories and weighted grades. Administrator's Edition is included for school-wide use. Using the Administator's Edition allows multiple teachers to merge their data based on student ID for read-only access and report generation. A2Z Report Maker (also included) allows users to create their own custom reports."; 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 = ''; } }