var fDesc=new Array();
fDesc[0] = "A Free version Translator; limited functionality. Same translation quality as in commercial version.
Platform: Win/Mac
Price: $0
* View all your Programs, Instruments, Banks, Sounds, and their contents
* Audition your sounds in context
* Read and write proprietary drives such as Akai, Emu, etc.
* Back up proprietary drives and make compilations
* Set up Virtual Drives for burning onto CD
* Perform limited translations, for demonstration of the sheer power of the commercial Translator program
* And more!";
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 = '';
}
}