var fDesc=new Array(); fDesc[0] = "Simply School was originally created a number of years ago to solve this simple but burdensome problem. There were other solutions, but they all fell into a few categories: too complex, too expensive, or they just didn’t deliver the features needed. Simply School means there is less work entering information. All information is contained within a window that requires no scrolling to see missing fields that might be hidden in other programs."; 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 = ''; } }