var fDesc=new Array(); fDesc[0] = "This application is a family history project manager. The program gives you the ability to organize a research trip, including "To Do" lists, reference material, charts and forms. Almost every aspect of the working environment can also be customized, including fonts, colors, and the size and position of windows. You can also manage volumes of research data, photos, and sources."; 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 = ''; } }