var fDesc=new Array();
fDesc[0] = "FundMaster is a powerful software package that helps you keep track of your school fundraiser, and provides an easy way for you to track sales and receipts.
Features:
- Daily deposit report, making your daily cash management much easier
- Variance reports for the whole school, and for individual classrooms
- Integration with Microsoft Excel and other spreadsheet programs
- Classroom and individual student rankings
- Easy-to-use and colorful data entry";
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 = '';
}
}