var fDesc=new Array();
fDesc[0] = "Samplitude Pro X Suite is a PC-based Digital Audio Workstation (DAW) that features extensive application options for recording, editing, mixing, media authoring, and mastering.
Samplitude Pro X Suite includes:
- All advantages of Samplitude Pro X
- Analogue Modelling Suite Plus: authentic simulation of high-end analog outboard devices.
- Vandal: virtual guitar and bass amplifier with physical modeling technology.
- Independence Sampler Workstation including 70 GB library: over 3,000 instruments, arranger and step sequencer patches.";
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 = '';
}
}