var fDesc=new Array();
fDesc[0] = "Transmission for Illustrator is a complete solution for managing the translation and localization of text intensive Illustrator files. It is designed to seamlessly integrate with Adobe Illustrator® - the most commonly used professional image manipulation program.
Transmission For Illustrator Corporate Edition Highlights :
Automatically convert Illustrator Files into TRADOS® readable XML-based files.
Automatically convert Illustrator Files into XLIFF files
Substitute fonts to accommodate alphabets not supported by the original text's font";
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 = '';
}
}