var fDesc=new Array();
fDesc[0] = "pdfFactory is a virtual PDF printer that allows you to create PDF documents from Windows applications. Before printing to a PDF file, it allows you to preview the file, rearrange and rotate pages, embed fonts, remove unwanted pages, and add password security.
pdfFactory is available in Workstation and Server variants.";
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 = '';
}
}