var fDesc=new Array();
fDesc[0] = "TOA Core VST is a set of essential tools that provide all the basics to produce a 3D mix. The plugins included are:
- TOA Panners (Standard, Classic, Hemisphere and Two Channel)
- TOA Decoders (Mono, Stereo and 5.1 Basic)
- TOA Beamer
- TOA Gain
- TOA Virtual Microphone
- TOA Rotation
- TOA Metering (Standard and Signal)
- TOA Visualisers (Standard and Hemisphere).";
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 = '';
}
}