var fDesc=new Array(); fDesc[0] = "Verses For Life is a software program designed to help you learn and memorize the Word of God. It comes with verses from the New International Version (NIV) Bible, and they are grouped by Topic. A note is provided with each verse to enhance your understanding and/or application. There are 3 basic modes available in this program: Learn a verse and its reference, Review the verse text if given its reference, and finally Review the reference if given its verse text."; 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 = ''; } }