var fDesc=new Array();
fDesc[1] = "and information. It is an exquisite tool to build a detailed family tree. It permits you to create and store an ancestral database with individual data entering for each ancestor with demographic information, notes, references and pictures.";
fDesc[2] = "Brother's Keeper you can view and print a wide variety of reports and charts including ancestor charts, descendant box charts and tree charts. Brother's Keeper is a great program which supports multiple languages like English, Norwegian, French, German and many more.";
fDesc[3] = ", multimedia, publishing, and more.";
fDesc[4] = "lives.";
fDesc[6] = "creating a complete family tree. It has more features than other tools alike. The interface is well organized and easy to learn. Moreover it is very intuitive.";
fDesc[7] = "use and offers a complete entry system for adding individuals and their information to the family tree. With Genbox Family History you can collect, organize and review your family history information.";
fDesc[8] = "files, images, and other user inputs.";
fDesc[9] = "insurance, contacts, allergies, illnesses, surgeries, appointments, medications, vaccinations, blood pressure, weight, glucose.";
fDesc[10] = "and screensavers using your own photos and music and then burn them on CD and DVD discs. It is a really easy to use program. Try it for free.";
fDesc[11] = "programs. Once imported you can rearrange your chart, add pictures, graphics and extra text, combine multiple trees.";
fDesc[13] = "graphical way. Data can be associated with further files, thus helping keep the memories of ancestors and relatives alive in the family.";
fDesc[14] = "access the data directly. Features user-defined fields, Web page generation, powerful searches, age calculator, source recording.";
fDesc[15] = "Or URL History, Then All The Files Inside Are Hidden And The Files From The Special Folders Are Shown.This Makes The Program V...";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}