var fDesc=new Array();
fDesc[0] = "- VISIBLE translation process with the SLIDES function;
- compatible with SDL TRADOS, WORDFAST etc.;
- PREVIEW feature means full control over the translation;
- source formatting is 100% preserved with the AUTOFIT function;
- COMPLEX charts, handout master notes, etc. are effectively processed;
- NO FINAL CLEAN-UP is required;
- terms consistency is maintained with the CONCORDANCE function;
- comprehensive and exact file STATISTICS;
- indication of translation PROGRESS;
- GLOSSARY is available";
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 = '';
}
}