var fDesc=new Array();
fDesc[1] = "of time travel that we are used to. Instead, it is more of a mental, inner journey to the past of the main character's ancestors. You play him, the main character.";
fDesc[2] = "3.0. Since its beginning has always been the rivalry browsers until became the favorite of the users. Netscape always taking a step forward innovating and upgrading, it couldn’t be considered the ancestor of multiple browsers as Firefox, Opera, etc..";
fDesc[3] = "tree by introducing step-by-step data about our ancestors. It is a very easy to use program and we do not need special training to start building our history to share with the rest of our family or just for entertainment.";
fDesc[4] = "hidden object game does not mean that you have played them all, however, this is one of those cases where from the very beginning you can realize that not all the necessary attention has been paid through the development process in order to achieve a truly original and unseen product.";
fDesc[5] = "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[6] = "family tree by adding members of your family with data about them. There are a lot of fields to store complete information. Now you will never forget the important date or anniversary, because Legacy will remind you about it.";
fDesc[7] = "charts. With the help of this software the user can easily modify the looks of the charts as per requirement, by selecting any desired color theme, content, pictures, box borders, number of generations and lots more.";
fDesc[8] = "use. If you are a beginner to genealogy, you can learn to use GenoPro in a few minutes without the need to take a look at the online help. GenoPro is capable to draw any type of family tree, including the most complicated family difficult to \"picture\". Once you have finished your family tree, you can save your family tree in a metafile to insert in Word, PowerPoint or any other Windows software. A metafile is a picture with a transparent background capable to be scaled to any size without quality loss. You can use GenoPro to create a huge poster of your family tree. GenoPro can insert unlimited pictures for each individual and family, and help you to create a CD ROM of your family album. GenoPro has a powerful report generator to generate detailed reports in the language of your choice. Those reports can be printed using Word or published on the Web using your internet connection....";
fDesc[9] = "Synchronise folders. Perform code reviews/audits. Work with folder trees containing thousands of files. Edit files in-place.";
fDesc[10] = "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[12] = "and unique keywords, allowing to compare non-related files. Word-by-word comparison compares files with a common ancestor.";
fDesc[13] = "files, images, and other user inputs.";
fDesc[14] = "keywords, allowing to compare non-related files. Word-by-word comparison compares files with a common ancestor";
fDesc[16] = "clock. Of course you will see the time. But it will not be in the classic clock face of many colors and shiny glows. You will see a scene that surely belongs to ancient times.";
fDesc[17] = "before the sunset, as the supervisors are getting more and more impatient.";
fDesc[18] = "Churchill. It was Winston's favourite game in the early 20th century.";
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 = '...';
}
}