var fDesc=new Array();
fDesc[0] = "Sunda Web is a web browser add-on that allows you to translate web page content directly in your browser.
Main features:
- Works with Internet Explorer and Mozilla Firefox browsers.
- Supported language pairs: English-to-Finnish and Finnish-to-English.
- The English-to-Finnish translator recognizes about 200,000 English words and idioms. In addition, it uses over 100,000 linguistic rules to translate text into Finnish.";
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 = '';
}
}