var fDesc=new Array();
fDesc[0] = "WordFusion is an integrated Forms, Document Assembly and Automation Management System. It combines three important components stored in a central repository that can be accessed locally, internally on your network or over the web. User access is centrally controlled by an administrator and work flow can be applied to content creation.
These components are the building blocks of dynamic forms and document templates that can be used and shared to create a suite of document solutions that remain maintainable and extensible.
The most important features implemented by WordFusion are rich design environment and form fields, version control, publish approval process, complete control over Form logic and layout, unlimited Nested Data, reuse of Form components between Forms, rrag and drop data integration, and many more.";
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 = '';
}
}