var fDesc=new Array();
fDesc[0] = "Using batch mode means selecting a number of files and then applying certain settings on every file. Using PDF splitter and merger, you can select a batch of files to merge them into one file. Or you can select a batch of pages and split them all into separate PDF files.
Sometimes you just want to remove a certain page from the PDF file to give your document more structure and feasibility. With a PDF splitter and merger, you can easily remove any unwanted page out of your PDF files to make them more productive.";
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 = '';
}
}