var fDesc=new Array(); fDesc[0] = "This program will allow you to create pedigrees in three, four, and/or five generation formats.

The program allows you to save it in a program format and also save it as an html file to put on your website or you can print it from a web browser and have a hard copy.

What´s best is that absolutely no html knowledge is required to use this program but if you know a little html then you can spruce the generated page up with colors, images, and other items.

The html pedigree generated by this program will fit to the screen of the computer it is being viewed on."; 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 = ''; } }