var fDesc=new Array(); fDesc[0] = "This is a song presentation program for churches that project the lyrics to songs as they are sung during a worship service. With this program your song is spread out before you in it's component pieces (verses, choruses and bridges), and displaying a song piece is as simple as clicking on it."; 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 = ''; } }