var fDesc=new Array();
fDesc[0] = "energyXT is a program that enables you to create an unlimited number of MIDI, drums and audio tracks. The program includes the following features:
- High quality pitch-shifting and time-stretching using elastique
- Import WAV, AIF, MID, MP3 and rex/rx2 loops
- Audio bounce, freeze and multi-track export
- Built-in effects and synthesizer with sample support
- Supports VST instruments and effects
- Mixer with group channels and unlimited insert and send effects
- Clip based automation of mixer and VST plugin parameters.";
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 = '';
}
}