var fDesc=new Array();
fDesc[0] = "Winfamily will show you the new generation of genealogy programs. WinFamily 2009 is based on the top selling WinFamily 6, but it's totally rebuilt to a modern, easy to use, high end product.
Main features:
- Runs under MS Windows 2000, XP, Vista and Windows 7
- Click, drag and drop people into your family tree.
- Supports all date formats.
- Advanced calendaring.
- Builds web pages automatically.
- Saves multimedia files (video, audio files, photos, presentation files).
- Possibility of a variety of prints (pre-defined and self-selected).
- Simple automatic import and export routines.
- Automatic backup routines.
- Tailored statistics.
- Graphical representation of statistics.
- Automatic validation of data.
- Automatic function for merging multiple databases.
- Many language.
- Automatic update check program.
- Supports GEDCOM 5.5.";
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 = '';
}
}