var fDesc=new Array();
fDesc[0] = "The program is intended for preservation of history and construction of a family tree of a family. With its help you will establish the detailed list of members of a family, will add their biographies, a photo and video materials. The program is simple and easy in development, has the clear and beautiful interface.
Main features:
- Construction of the general family tree on a man's or female line.
- Construction of a personal genealogical branch.
- Construction of a tree of nationalities.
- Drawing up of the biography of each member of a family.
- Preservation of history of a family.
- Construction of a general family tree for all people in the list.";
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 = '';
}
}