var fDesc=new Array(); fDesc[0] = "AirTraffic Control is a VST audio plugin which displays a map of a virtual audio space. This could be a map of the room you are in with your speakers. This picture shows four sound sources (inputs) across the US and two ears (outputs) as far apart as Texas is wide. Each output acts like an ear: as inputs come closer, the ear can hear them better. The circles around each ear adjust its hearing. The inner circle is how close an input must be to hear it at full volume, and the outer circle is how far away an input must be to become inaudible. You adjust how you hear by dragging the circles. You adjust what you hear by dragging the inputs and outputs around."; 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 = ''; } }