var fDesc=new Array();
fDesc[0] = "Samplitude Pro X is the perfect DAW for uncompromised audio productions - from arranging and recording, to editing and mixing, all the way to professional mastering and CD/DVD authoring.
Work with a fully customizable interface and experience a DAW tailored to your needs. The precision audio engine with 64-bit support, outstanding mastering quality plugins, 5.1 Surround mixing and its ability to be seamless integrated into your studio make Samplitude Pro X the most powerful audio workstations.
Main Features:
- One-box Solution
- 100% sound neutral hybrid audio engine
- New docking concept
- Spectral editing on track level
- 5.1 Surround Mixing
- Advanced object editing
- essentialFX Suite, VariVerb Pro & Vintage Effects Suite
- Virtual instruments
- High-End Mastering Plug-ins
- Independence Sampler Workstation
- AAF/OMF support
- 64-Bit support";
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 = '';
}
}