var fDesc=new Array();
fDesc[0] = "Document Translator allows you to translate your Word, PDF, PowerPoint, plain text or Excel documents quickly and easily.
Main features:
- Connect to the Microsoft Translator Hub.
- Customize the Document Translator’s source code for your needs.
- Interactive use or command line operation for integration into batch workflows.";
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 = '';
}
}