var fDesc=new Array();
fDesc[0] = "The perfect tool for professional quality
audio recording and editing
Main Features:
-Record, edit, overdub your audio tracks
-Apply effects, process audio live input and mix
-Burn audio CDs or create mp3 files
-Records and plays back a virtually unlimited number of audio and MIDI tracks
VST, VST3, DirectX and ReWire effects can be added to each channel/track
Volume, pan, aux sends & returns and effects parameters can be automated: you can "program" fade-in/outs, cross fades, boost the volume of a track when there is a solo etc.";
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 = '';
}
}