var fDesc=new Array();
fDesc[0] = "FormMax Filler 3.5 is the $0 cost electronic form filler that lets users fill out forms created in FormMax while protecting the form design from modification. Easy tab-and-type entry makes filling out forms simple, and with autofill, database lookup, and automatic calculations you reduce the time and data-entry error. The build-in database keeps a record of all your entries, which you can search, sort, and update.";
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 = '';
}
}