var fDesc=new Array();
fDesc[0] = "ARTS PDF Variform Plus extends ARTS PDF Variform Lite by allowing you to merge data from any ODBC database or Adobe® FDF/XFDF files. Data can be merged directly to new PDFs or printed to any Windows Printer. Variable images are also supported in the Plus version.
Key features:
-Use data from any Windows ODBC database, Adobe® FDF/XFDF files, or delimited text files.
-Output to any installed Windows printer or merge directly to new PDF files.
-Support for merging images.
-Option to flatten pages after merging.
-Enhanced Variform 'hot folders' for automation.
-Built-in IAC allows programmatic control of Variform Plus.";
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 = '';
}
}