var fDesc=new Array();
fDesc[0] = "Genealogica Grafica is the successor of KStableau. The program offers broad charting capabilities, such as: ancestor chart (pedigree) plus outline, descendants chart plus outline, ancestor tree,descendant tree, timeline descendants chart, inbreeding charts, relationship charts, circle diagrams, geographic map of birthplaces.
This program has an a clear user interface where you can you can specify the depth of a chart (tableau and tree).";
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 = '';
}
}