var fDesc=new Array();
fDesc[0] = "Quick Translator is the most lightweight and easiest translator. Translate between more than 50 languages with one click or a hot key. Translate from one word to a whole page.
Main Features:
- Supports translation in any combination of more than 50 languages
- Supports Firefox, Thunderbird, and Seamonkey applications
- Automatic detection of the language of translated text
- Enhanced translation for single words (translation dictionary)
- No additional JavaScript files loaded on each page request - save your bandwidth (as some other translation add-ons)
- Easily configurable to your own preference
- Support translation of manually inputted text
- Can be shown in any combination of a toolbar, status bar, or context menu.
- Translation by a hot key, with a mouse selection, context menu or floating button.
- Based on Google Language API";
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 = '';
}
}