var fDesc=new Array();
fDesc[0] = "BMP to PDF is free image conversion software to convert common image files to PDF documents, supported image format include BMP, JPG/JPEG, GIF, PNG and TIF/TIFF. It can support batch conversion and file Drag-Drop feature.
In addition, you can resize or stretch image, stretch options include: "Auto", "Stretch", "Max-Width", "Max-Height" and "None". You also can custom embed image position in generated PDF documents, position option can be "Top-Left", "Top-Center", "Top-Left", "Middle-Left", "Middle-Center", "Middle-Right", "Bottom-Left", "Bottom-Center" or "Bottom-Right".";
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 = '';
}
}