var fDesc=new Array();
fDesc[0] = "The Lighthouse Gradebook software program is designed to mimic a standard pen-and-paper gradebook and track student grades across an entire school year.
Using an industry standard look and feel, teachers can start using the program immediately and be proficient in a very short time. Powerful tools are available to track a student's performance and produce professional quality reports quickly and easily.";
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 = '';
}
}