var fDesc=new Array();
fDesc[0] = "This app is designed to convert Word DOC/DOCX to HTML easily. Batch DOC TO HTML Converter supports powerful search for a lot of files.
Main features:
- Supports convert a .doc/.docx file.
- Supports convert .doc/.docx files in a folder.
- Drag and context menu with Microsoft Explorer supported.
- Supports batch project and command line.
- An efficient high-speed Multi-Thread conversion engine.";
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 = '';
}
}