var fDesc=new Array();
fDesc[0] = "Eleven is the virtual guitar amp plug-in for Pro Tools and
Avid systems.
Main features:
- Classic amps models that faithfully recreate
the sound and dynamic response of the original
amps
- Highly accurate speaker cabinet models with
variable speaker breakup
- Selectable mics, with on- and off-axis options
- Amps and cabs can be bypassed separately
- Amps, cabs and mics can be mixed and
matched into nearly limitless combinations
- Supports any compatible work surface or
MIDI controller.";
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 = '';
}
}