var fDesc=new Array();
fDesc[1] = "CHM files - you get a translated document with the same formatting as in the original language by using one of the available translation services. Your translation will be complied saving all html-tags and structure of the source document.";
fDesc[2] = "Printed Manuals from the same source help project.";
fDesc[3] = "long time. Taking CHM files or CHM ebooks, it will convert them to any document format you wish.";
fDesc[4] = "the number of pages in the CHM file and whether there are a lot of images and that we have set some options for the manipulation of images, like cropping, resizing of the pages, etc.";
fDesc[5] = "Files, Microsoft Word Documents and Adobe Acrobat Document.";
fDesc[6] = "* Fully support full-text search. * Auto generate TOC and Index Item by parsing title or filename.";
fDesc[7] = "files in a MS .chm file or ebook easily and quickly,ChmDecompiler is also a easy-to-use .chm file viewer.";
fDesc[8] = "files and they are collection of many html pages put on 1 file. Usage of chm file reduce overhead of maintaining multiple html file and it increases performance also. CHM file comes with easy navigation and search functionalities.";
fDesc[10] = "conversion consists of three steps, Opening a CHM file, Selecting the topics and Start converting. The File menu, View menu, Tools menu and Help menu contain all the commands for executing the conversion to Word documents. The Help Menu contains a detailed manual for CHM2Word.";
fDesc[11] = "Executable). The '.EXE' format ensures the highest level of protection to your documents as it will be almost impossible to copy data from them. The output file can be opened on any Microsoft Windows machine.";
fDesc[12] = "You can read your CHM files with point-and-click operations with a better and faster search functionality. The GUI is completely streamlined, with a nice visual touch to it.";
fDesc[13] = "document. A powerful tool that convert word to chm, doc to chm by outline!";
fDesc[15] = ", you can make a specification of an application from the *.chm files.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}