var fDesc=new Array();
fDesc[0] = "The light open-source desktop application to translate national word to English by the Google dictionary.
Main features:
-your translated words are stored to a local text file (XML) to a later learning
- translated words are grouped to chapters
-selected item can be opened to the Google Dictionary word page anywhere for detail information or to listen a pronunciation.
-you can modify all text information in your vocabulary as you like
-learning panel is available for the selected chapter
-selected chapter/items can be exported to the HTML report to a print
-native support of the code-page UTF-8 is implemented
-systray running support
-the core of application is based on a UJO Framework for a data management and table visualisation
With PekiLine :
- your translated words are stored to a local text file (XML) to a later learning
- translated words are grouped to chapters
- selected item can be opened to the Google Dictionary word page anywhere for detail information or to listen a pronunciation.
- you can modify all text information in your vocabulary as you like
- learning panel is available for the selected chapter
- selected chapter/items can be exported to the HTML report to a print
- native support of the code-page UTF-8 is implemented
- systray running support.";
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 = '';
}
}