var fDesc=new Array();
fDesc[0] = "novaPDF SDK is a PDF software development kit for developers that want to add PDF creation capabilities to their application.
Main features:
- COM interface to programmatically control novaPDF SDK printer options.
- Customization tool that lets you configure the novaPDF SDK printer distribution.
- novaPDF SDK documentation including several code samples (ASP.NET, C#, C , Delphi, Java, Ms Access, Visual Basic, VBNet).";
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 = '';
}
}