var fDesc=new Array();
fDesc[0] = "GBK Music is musical software that will make it easy for musician's to find chords, scales and help in all other aspects of music. Displays up to 6 Voicing per chord for Guitar and 3 voicing for keyboard. Displays / Hear note per fretboard (Guitar and Bass neck) and piano by mouse-over/click/ and by sweeping the mouse over any instrument you can hear the sounds";
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 = '';
}
}