var fDesc=new Array(); fDesc[0] = "Easy Sunday School Administrator is a neat application that was designed to allow a church, large or small, to maintain each class, its members and their attendance. The program is simple and to the point. Enter the class names, enter the members and assign each to a class. Print a roster and maintain each members attendance. There are reports and queries but everything is predicated on the classes and the class members."; 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 = ''; } }