var fDesc=new Array(); fDesc[0] = "This is a CHM convertor to create HTML files from HTML help file (CHM). It can also work with MHT files. MHT files are the HTML files with resources embedded within itself (images, flash contents, etc). The program tries to keep the format/style of the pages in CHM file in HTML also. Keeping the format is not a difficult problem since the CHM file is simply a collection of HTML files and associated resources like images, stylesheets, etc."; 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 = ''; } }