var fDesc=new Array();
fDesc[0] = "fleXdoc can be used to produce Word 2007/2010 (docx) documents without the need to have Microsoft Word installed.
It takes a document template (document containing data-placeholders) and an XML-based data-file and merges them to create the final document. It supports advanced scenario's like repeating sections (lists, tables), images, custom formatting, etc.
Main features:
- Creates Word 2007 docx files (OOXML-standard compliant)
- Web service facade for the API, making it possible to use fleXdoc as a service in a SOA environment
- Templates are created from within Word without the need for any additional software/plugins
- Word is not needed for generating the final document, which makes this an ideal server-side solution";
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 = '';
}
}