var fDesc=new Array(); fDesc[0] = "Family.Show is a genealogy program. The program was actually created to test the power of WPF (Windows Presentation Foundation), which is the part of Microsoft .NET API. The mail idea is to create applications that have great user interfaces.

The program can be used as any other genealogy program, even if you are a non programmer. But if you are really curious on how it works, you can get the source code."; 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 = ''; } }