var fDesc=new Array();
fDesc[0] = "The DSP-FX Plug-Ins are the most versatile effects available. They can be "plugged-in" to virtually all of the popular PC recording programs, or they can be run in two different "stand-alone" modes. When you purchase any DSP-FX plug-in you will be able to use the effect in all of the following modes:
- DirectX Plug-In:
- Use directly within Sound Forge, Cakewalk, Cubase-VST, WaveLab, CoolEdit Pro, Samplitude 2496, Samplitude Pro, Logic Audio, Sonic Foundry Acid, SAW32, SAWPlus32, SAWPro, SEK'D Red Roaster, Ensoniq PARIS, WaveConvert Pro and any other application that supports the DirectX plug-in architecture.
- SAW Native Plug-In:
- Use directly within SAW32, SAWPlus32, and SAWPro
- Winamp Plug-In:
- Use directly within Winamp to improve the sound quality when playing MP3 files.
- Stand-alone ".WAV" Processing:
- Process any .wav file in real-time and save the processed signal into a new .wav file.
- Stand-alone "Live" Processing:
- Turns your computer and soundcard into an outboard effects processor. Any DSP-FX plug-in can be used to process the "live" stereo inputs of your soundcard, and in real-time send the processed sound to the soundcard stereo outputs.";
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 = '';
}
}