var fDesc=new Array();
fDesc[0] = "All modern software applications, no matter how large or small, need to have clear, concise, well-structured, and easily navigated Help systems. Generating such a system is often considered to be a difficult task, however, creating a help file can be as easy as writing a document in a word processor. All you need to do is simply select the most appropriate help authoring program for the job!
Help Development Studio is a popular help authoring tool, designed to create WinHelp (.HLP), HTML Help (.CHM), and Web Help (.HTML) files from the same source. This is a full-featured, stand-alone, complete help authoring tool, which includes all that";
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 = '';
}
}