var fDesc=new Array();
fDesc[0] = "Application for automatic creating of dictionaries and encyclopedia in CHM format with most powerful search capabilities and convenient interface.
Source files is a simple HTML.
- unjustified severe requirements to the language of localized version of operating system,
- limitations of the character set permitted,
- no entries order control,
- limitation of the stored/embedded data formats (e.g. graphics),
- absence of external references as means of text extension,
- impossibility of use as a Help,
- impossibility of adding custom dictionaries,
- no possibility to see an entry among the surrounding ones (characteristic especially for "on-line" editions)";
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 = '';
}
}