var fDesc=new Array();
fDesc[0] = "UnityPDF has a very simple and quick merging PDF files feature. You can also split files, extract pages, insert one file into another, etc. The program can protect your documents by adding a password for opening them and/or restrict to print, and to copy or extract content. Editing of metadata is also possible.";
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 = '';
}
}