var fDesc=new Array();
fDesc[0] = "Analog Studio Rack is a "Modular Rack" that provides hot-swappable 500 series style EQ’s, Compressors, Gate, Exciter and a Tube Driven Pre-Amp; the perfect all-in-one channel strip.
Inspired by a classic and famous British console for its Gate/Expander, Comp/Limiter, Bus Compressor and EQ, a modified Exciter, a Tube Driven Pre-Amp and another famous mid 1950's EQ, the AS-Rack brings together a suite of 7 modules expertly tuned to sound musical. True analog in the box.";
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 = '';
}
}