var fDesc=new Array();
fDesc[0] = "GIRDAC PDF to Word Converter Pro is a software utility for converting PDF documents to Microsoft Word .DOC, .DOCX, .XML and .RTF file formats, and plain text file.
PDF to Word Converter Pro has six Layout options: Flowing, Continuous, Formatted text, Plain text, Images and OCR. Flowing is the most preferred option because it allows to convert PDF documents retaining the format with text, columns, tables and images.";
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 = '';
}
}