var fDesc=new Array(); fDesc[0] = "This program was created as part of Joseph's Eagle Project. This program helps people with personal cemetery indexing projects, like the one Joseph did for his Eagle Scout program. The program allows the person to enter the information, the program alphabetizes the lists, and then the program creates an HTML file that can be hosted on their own personal webpage, or they can contribute the sorted HTML or sorted TXT file to an online record repository such as rootsweb.com."; 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 = ''; } }