var fDesc=new Array();
fDesc[0] = "GedPad is a line-editor for GEDCOM files. GedPad includes the following features:
-Indented presentation of the GEDCOM data levels
-Hyperlinked record link references, with tooltip descriptions
-Old and new copies of changed lines are displayed
-Full Undo/Redo
-Search for text
-Single line or global replace
GedPad is freeware. Just download and use it without ever paying any fees!";
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 = '';
}
}