var fDesc=new Array();
fDesc[0] = "Listening music teacher helps you to improve your listening skills. Learn how to recognize triads and seventh chords. The software consists of two animated introductory lesson:
- A chord explorer, which allows you to move up to four notes around on the staff; the cord explorer will display information for the note name, interval name, triad name or seventh chord name.
- And 26 exercises, which will help you improve your listening and recognition skills.";
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 = '';
}
}