var fDesc=new Array();
fDesc[0] = "Infix works like a normal word processor, so it’s really easy to use. It’s easy and quick – change text, fonts, images and more.
No interface gimmicks, no ribbons!
Change a single word, a paragraph, or an entire page. Infix covers your back, reflowing and reformatting text to keep it looking good. Once you’ve saved a file, you can’t even tell it’s been edited.
Advanced Find & Replace, Translation, Bates numbering, OCR, Forms creation, Headers & Footers... Infix offers powerful tools designed to solve real-world PDF problems.";
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 = '';
}
}