var fDesc=new Array();
fDesc[0] = "The project aims to create a feature-rich dictionary lookup program.
Use of WebKit for an accurate articles' representation, complete with all formatting, colors, images and links.
Main features:
- Support of multiple dictionary file formats, namely:
-Babylon .BGL files, complete with images and resources
-StarDict .ifo/.dict./.idx/.syn dictionaries
-Dictd .index/.dict(.dz) dictionary files
-ABBYY Lingvo .dsl source files, together with abbreviations. The files can be optionally compressed with dictzip. Dictionary resources can be packed together into a .zip file.
-ABBYY Lingvo .lsa/.dat audio archives. Those can be indexed separately, or be referred to from .dsl files.";
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 = '';
}
}