var fDesc=new Array();
fDesc[0] = "Homeschool Tracker Plus is a planning and organizing app designed to adapt to your particular homeschooling style in a simple yet sophisticated way. You can use Homeschool Tracker Plus to assist in meeting the mandatory report requirements of your local authorities.
Main Features:
- Track books used.
- Chores and appointments.
- Track student goals progress.
- Set student goals.
- Define courses of study within subjects.
- Transcripts.
- Security features to allow student access to data.";
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 = '';
}
}