var fDesc=new Array();
fDesc[0] = "When working on a project as a team, putting together each and every contribution is perhaps the most demanding task since it requires a lot of attention to details especially as far as the transition between each section is concerned. Fortunately, there are utilities that can help you when dealing with such a task. PDF MERGE PRO is the program designed to combine two or more PDF files.
Benefits and features list: drag and drop your multiple PDF files, unlock the PDF files with passwords. Set exported file name and destination folders, etc.";
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 = '';
}
}