var fDesc=new Array();
fDesc[0] = "Infix PDF editor lets you open, edit and save PDF files. It’s easy and quick – you can change text, fonts, images and more. And, unlike other PDF editors, it works like normal word processing software, so it’s really easy to use.
Sort out typos: correct mistakes in PDF files quickly.
Reuse your PDFs: edit any PDF, without the source file
Use less paper: fill in forms without printing
It doesn't matter whether you change a single word, a paragraph, or an entire page. Infix is the only PDF editor that 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.";
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 = '';
}
}