var fDesc=new Array();
fDesc[0] = "M-theory is a hybrid synth that is built around the Karplus-Strong delay based physical modeling technique, and uses samples, VA oscillators, and noise to drive the delay based oscillator; resulting in a very wide range of high quality synthetic and hybrid acoustic modeled sounds.
M-theory is the successor to the highly popular String Theory and, in comparison to its predecessor, M-theory is far more flexible and";
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 = '';
}
}