var fDesc=new Array();
fDesc[0] = "PDFBinder is a simple tool that lets you merge any number of PDF documents into one, without having to resort to slow, user-unfriendly, expensive software.
With a good PDF printer, like PDFCreator, and PDFBinder installed on your workstation, you are able to do anything in PDF. Example: attach a "print" of a website and a scanned pile of vouchers to your meeting agenda, before you e-mail it as one single PDF document.";
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 = '';
}
}