var fDesc=new Array();
fDesc[0] = "All editors and librarian are distributed in one single package the ES Tools Complete Pack.
The pack includes:
- Total Librarian
- Voice Editor
- Drum Kit Editor
- Performance Editor
- Mix Editor
- Master Editor (n/a for Motif Rack ES)
You can chose to install only the applications you want during the installation process.
New Features :
- Added Unicode support
- Total Librarian: Remove Duplicates feature now allows you to select which patches to remove
- Several fixes and enhancements";
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 = '';
}
}