var fDesc=new Array();
fDesc[0] = "Transmiti helps you to translate selected text or entire documents in no time with the Windows key.
* No installation needed. No administrator- or power-user rights needed.
* All languages are supported, to which the Google Translator is capable of.
* Optionally, the selected text will be replaced directly with the translation.
* Automatic bidirectional translation of the source- and the target-language.
* Single words or phrases can be searched in the "Google dictionary".
* Proxyservers - even with authentication - are supported.";
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 = '';
}
}