var fDesc=new Array();
fDesc[0] = "Bilingual Dictionaries English, French, German, Portuguese, Spanish, Italian, Dutch, Swedish, SQL, Excel, Access. For Companies with own applications: Dictionaries, Thesauruses and Verb Conjugations for English, French, Spanish, German, Portuguese, Brazilian, Italian, Swedish and Dutch. Databases in Excel, MS- ACCESS or SQL format.
Integrate it into your application, website, search engine. For Universities, translation agencies (create a basis for your own Translation Memories -TM) , companies with own applications, scientific departments";
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 = '';
}
}