var fDesc=new Array();
fDesc[0] = "GoldWord writes and translates words in a wide range of different languages. In addition, it enables writing in foreign languages, hearing the correct pronunciation of a selected word, and has highly developed editing and instant translation integration abilities.
The software is compatible with a variety of applications, such as Windows Word, Excel, Outlook, ICQ, and Internet browsers.
Supported languages: Dutch, English, French, German, Hebrew, Italian, Spanish, Turkish, Polish, Arabic, Chinese (S), Chinese (T), Czech, Spanish, Danish, Dutch, Greek, Hungarian, Japanese, Korean, Portuguese, Russian, Swedish.";
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 = '';
}
}