var fDesc=new Array();
fDesc[0] = "SMIS is a web-based school management information system. The system automates student enrolment, tracking, performance, and generation of reports.
It also incorporates a teacher module that handles the tracking of teacher workload and attendance to training programs; announcement module to handle school events; inventory module to handle school asset management; and planning module to facilitate plan preparation.
The software package is license under the General Public License (GPL). It comes with absolutely no warranty and technical support.";
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 = '';
}
}