var fDesc=new Array();
fDesc[0] = "TH1 offers virtual amplifiers, pedals and rack effects that can be chained together, with a graphical representation that looks like real hardware.
The top of the interface offers, among other things, a tuner and Global controls. The latter are non-patch-specific and enable you to switch input sensitivity, apply gating, dial in bass/treble EQ, and set the general reverb and delay mix.
The Overview panel depicts the signal path – to insert new modules, click a section of cable and choose from a menu. Reordering is achieved by dragging, and a dual amp/effects chain is possible because the cable splits and recombines with a simple mixer.
The Module View is for changing settings – click a module in the Overview to bring it into focus here, or drag the background to pan around. It's clear that serious thought has gone into TH1's super-slick interface – you can even resize it by dragging the bottom-right corner.";
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 = '';
}
}