var fDesc=new Array(); fDesc[0] = "This software offers a solution for users who want to keep track of students and manage student information. This flexible software allows you to enter both personal and financial information for students currently enrolled as well as historical data for students enrolled in previous years. In addition the user is presented with a variety of search and reporting options that allows you instant access to the data you've entered in the format you need. With security a primary concern whenever personal or finacial data is involved, this software provides options for creating users, user groups and passwords."; 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 = ''; } }