var fDesc=new Array();
fDesc[0] = "jpg2pdf is a very flexible and powerful PERL5 program. It can convert a collection of jpeg images into a unique PDF.
You can use jpg2pdf like a module inside your applications (cgis, ...).
jpg2pdf is a PERL5 tool, so you can use it in every OS supported by PERL5
we distribute also these executable versions: Windows, Solaris, HP-UX, Linux, AIX
jpg2pdf is a native converter, you don't need to pass through PostScript format
jpg2pdf is specific to put your jpeg images inside a PDF, so
you can create (batch) a unique PDF file from your JPEG archive (using * and ? metachars: e.g. a*.jpg or recursively)
you can add to your PDF collection of jpeg images transition effects
you can set PDF full-screen mode e.g. to show to your friend your digital photos made by your digital camera
you can create your personalize background and foreground layer";
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 = '';
}
}