var fDesc=new Array();
fDesc[0] = "FormTool Filler, a data management system that allows you to quickly fill out forms right from your own PC, a real timesaver if you need to fill out forms on a regular basis.
FormTool Filler maintains a database of information about the user and automatically fills in information that has been provided on previous forms, reducing errors and saving you time and money.";
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 = '';
}
}