var fDesc=new Array();
fDesc[1] = "With its simple word-processor-like interface and integrated help, this application can be easily mastered by novice users too. Supplied with single- and multi-author editing capabilities, this program allows you to create documentation in form of compiled HTML help, Web help or PDF format.";
fDesc[2] = "with ease. Compatible with Windows 98/ME/2000/XP/Vista this amazing tool makes the complex task of creating help files simply at your finger tips.";
fDesc[3] = "Printed Manuals from the same source help project.";
fDesc[4] = "Files, Microsoft Word Documents and Adobe Acrobat Document.";
fDesc[5] = "application can make help files for Windows (WinHelp), RTF and even HTML help files (help authoring files). It includes also two other applications: ButtonMaker and ImageMaker, that can be used for creating help files in a simple way, enhancing the way HelpMaker creates files.";
fDesc[6] = "references to all controls: buttons, fields, lists, and etc. Dr.Explain makes CHM, RTF, and HTML help files.";
fDesc[7] = "pages, images and help project files. Includes help editor. HTML Help, web-based help and documentation in Word.";
fDesc[8] = "These are predefined regions that can operate as hotlinks to help topics, as pop-up links, or even as special macros. Download a trial copy now!";
fDesc[9] = "web based content from a Microsoft Word document.";
fDesc[10] = ", HTML Help, and Web Help files from the same source. Download your free trial copy now!";
fDesc[12] = "HelpCruiser is optimized for solving tasks that appear during the process of creating help files, descriptions and manuals for software products.";
fDesc[14] = "Web sites. It provides an easy and pleasant development process, which saves time and increases your help-writing efficiency.";
fDesc[15] = "from the same source project. Does not require an expensive word processor. Has spell checking, thesaurus, contents file editor, and many other tools for implementing WinHelp features.";
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 = '...';
}
}