var fDesc=new Array();
fDesc[0] = "EGR430T PC-Link is a multilingual software application that lets your computer and handheld dictionary share information.
This product is the result of the combined efforts of Ectaco’s linguists, engineers, and programmers, and represents the last generation of the highest-performance integrated educational tools available.
The Partner EGR430T features:
-Main vocabulary (English-German, English-Russian, Russian-German bidirectional dictionaries) of approx. 650,000 words,including medical, technical, legal, and business terms, as well as slang, idioms, and general expressions
- Electronic English Grammar book
- A selection of the most popular American and German idioms
- English and German irregular verbs
- 12-topic book of common English phrases
- Advanced English, German and Russian speech reproduction
- Recording function for new words
- Instant reverse translation
- Award-winning Vector Ultima";
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 = '';
}
}