var fDesc=new Array(); fDesc[0] = "School Management System aimed to provide complete computerized operations in any school. Students can be managed through Bio-Data (GR No. Allotment), Attendance, Fees, Examination, Leaving modules. Staff records can be computerized by Bio-Data > Staff Salary > Leaving modules. Accounting module is integrated with all other modules to getting rid of transaction duplication."; 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 = ''; } }