var fDesc=new Array();
fDesc[0] = "Professionals and workgroups that want to build collaborative knowledge bases and/or other free-form information sources. InfoTree also provides for optional, user definable fields to help implement mixed format free-form / fill-in-the-blank information databases.
InfoTree is the culmination of our historic efforts developing InfoTree32, InfoTree32XT, InfoTree32XT Pro and InfoTree 2004.";
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 = '';
}
}