var fDesc=new Array();
fDesc[0] = "This product allows you to print a number of documents, even from different applications, and to create a single PDF.
It is not a simple print driver, it is an extremely effective and easy-to-use PDF composition tool.
Features :
- Creates a pdf from any Windows printing process
- Visualises in Acrobat
- Manages your pdf database
- Allows you to remove pages from the final pdf";
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 = '';
}
}