var fDesc=new Array(); fDesc[0] = "BibleMemorizer is a program to help with memorizing Scripture. It allows you to create files with lists of verses you want to memorize, including the text of the verse and any categories you create. It can also quiz you over your verses, either one at a time or in multi-verse quizzes, and intelligently corrects your errors. By default, it is now configured to ignore minor errors such as spelling, capitalization and punctuation errors, but these settings may be changed."; 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 = ''; } }