var fDesc=new Array(); fDesc[0] = "Get My Ancestors is a stand-alone program that will allow the user to download linked pedigrees from FamilySearch in a paf format. Download either a pedigree that starts with you or the pedigree of an ancestor. You indicate the ancestor by entering their personal identifier from FamilySearch family tree. You must be able to register for FamilySearch family tree to successfully use Get My Ancestors."; 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 = ''; } }