var fDesc=new Array();
fDesc[0] = "A Musical Tutorial is an excellent way to encourage musical study.
Main features:
- Treble / bass note and chord sight reading.
- Associate notes to piano keys.
- Chord dictionary.
- Several musical games to play.
- View, play and print scales, chords and triads.
- Detailed student/user tracking log.";
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 = '';
}
}