var fDesc=new Array(); fDesc[0] = "This program has been developed to assist public talk coordinators in preparing schedules for the notice board at their Kingdom Halls. Several other types of report can also be generated which makes it a versatile program. These reports can be saved and reloaded at anytime. If used correctly, you will also find it easy to determine which public talks you would like to hear next. It is not suggested that you only use this program and nothing else. It would be best to fit it in with your existing system that you have. There is nothing worse than asking to hear a talk and waiting on the phone for the pc to be booted up!"; 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 = ''; } }