var fDesc=new Array();
fDesc[0] = "OmniForm 5.0 enables you to quickly turn paper forms into digital forms, or to create new digital forms from scratch. OmniForm 5.0 comes with a complete set of pre-designed templates to facilitate the creation of new forms. These forms can be printed and distributed, or they can be sent via e-mail so that recipients can fill them out on their computers.
OmniForm 5.0 also comes with a single license for the OmniForm Filler/Data Manager so that the user can expedite the filling out of forms on their own PC. This is a real time-saver for individuals who need to complete forms on a regular basis. The Filler/Data Manager maintains a database of information about the user and automatically fills in information that has been provided on previous forms.";
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 = '';
}
}