var fDesc=new Array();
fDesc[0] = "LanSchool is a classroom management solution for both students and teachers.
Features:
- It is reliable and uses significantly less network bandwidth than other solutions.
- It keeps working even when students try to disrupt it.
- It is reliable and uses significantly less network bandwidth than other solutions.
- It includes a Tech Console to perform desktop management tasks such as inventory, remote control, software distribution, security and technology utilization 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 = '';
}
}