var fDesc=new Array();
fDesc[0] = "Sounds and tones like a rock star without hours of hunting for equipment. Guitar turns your computer into a powerful guitar effect processor.
Guitar is a highly optimized low latency VST host application shipping with a large set of VST effects. Guitar opens software effects for live performances at home, on stage or in the studio. A complete set of effects is included, 3rd party plug-ins can be used, too.
Guitar utilizes multichannel audio interfaces and allows flexible assignments of inputs and outputs.";
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 = '';
}
}