var fDesc=new Array();
fDesc[0] = "The DocTranslate translation tool allows to quickly translate Word, Powerpoint, Excel, Txt and Xml documents without losing the layout.
It uses the very good Google translate and Microsoft translator services.
As automatic translations can’t be perfect, translations SHOULD be enhanced by human translation. Doctranslate includes a Translation Memory (TM) engine. A TM engine is based on a memory of well translated source and target sentences or segments, which are reused and enriched. The duty cycle of Doctranslate is, by construction, virtuous, and can gradually improve the relevance and speed of translations.";
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 = '';
}
}