var fDesc=new Array();
fDesc[0] = "qwertyGO! is useful for all musicians/artists/DJ's on stage, theaters, radio stations, for sport events or wherever you want to play jingles/backing-tracks/sound-effects. It's just this nifty little helper you sometimes need!
Trigger sounds, samples, and songs with your computer-keyboard or midi-device. Provide backing tracks for live acts and generate a click-track for the drummer on a separate channel. Play jingles and loops in a radio show or at the theater. Play multichannel sound files for art-performances and sound sculptures. Present examples of your work to customers at your studio.";
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 = '';
}
}