var fDesc=new Array();
fDesc[0] = "HelpConsole 2010 is the easiest way to create Help Systems and PDF manuals for your website or to distribute with your software products. Create a 'Help Center' within your existing website that your staff can easily update at anytime from anywhere. Publish online product manuals, product demos, FAQs, knowledgebase articles, PDF manuals, etc. The in-place editing feature allows your technical writers to quickly make changes to your online documentation after it has been published to your website.
Some of the features include:
Multi-language support
Import Microsoft Word, Microsoft Excel, HTML pages
Unicode Support
Create Cross-browser Help
Create Printed Documentation
Context Sensitive Help
Conditional Content
Modular Help
Table of Contents
Index
Powerful Search 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 = '';
}
}