var fDesc=new Array();
fDesc[0] = "Apex PDF to Image Converter is an application which converts PDF file into individual TIFF images, as well as multipage TIFF image. Tool can also support to convert PDF to JPG, PDF to BMP, PDF to PNG, PDF to GIF, PDF to TIFF, PDF to EMF, and PDF to WMF.
It can process all pages, odd pages, even pages, fixed page range and custom pages like 1,5,10-15.";
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 = '';
}
}