var fDesc=new Array();
fDesc[0] = "Create professional looking and secure PDF documents in a simple step from virtually any Windows application. A simple to use interface with advanced PDF editing features you’ll need.
This all new version adds a new GUI that improves usability and functionality when performing certain PDF tasks. Now we've pushed that boundary a little further. Creating and securing your PDF documents can't get any simpler than this.";
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 = '';
}
}