var fDesc=new Array();
fDesc[0] = "Benefits and features list include:
* convert pdf to image in 3 easy steps
* modify the output image type: BMP, JPEG, JPG, GIF, PNG, WMF, EMF, EPS, TIFF
* export all pages or a selection of pages
* choose the quality of your JPG file
* use this free PDF to image converter and modify the DPI settings of the output image
* work with password protected documents
* use it for free in non-commercial environments";
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 = '';
}
}