var fDesc=new Array();
fDesc[0] = "Sequential Vibes is a pattern orientated audio sequencer.
Main features:
- VST Effect Support
- VST Instrument Support
- Direct-X Audio Effect Support
- Midi Sync
- Automation for Instruments and Effects
- 44,1 Khz, 16 Bit, Stereo
- Internal Sampler with 256 Voices (Interpolated,Smooth Filter)
- Compact File Format (save all settings,samples into one file)
- Import/Export of Microsoft WAV Files";
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 = '';
}
}