var fDesc=new Array();
fDesc[0] = "Class Action's Homeschool Edition is designed for homeschool students and their parents. All of your students can be included in a single "class" with different assignments for each level.
For easy access, your class will have a tab for each subject you teach. Subjects can be organized into assignment categories, such as classwork, participation, and tests, and grades can be calculated on a weighted or unweighted basis.
Class Action is extremely flexible: Any part of your class configuration, including students, subjects, assignment categories, attendance codes and dates, and grading system can be altered at any time.";
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 = '';
}
}