var fDesc=new Array();
fDesc[0] = "This program will help you quickly learn to recognize and identify common musical structures including intervals, scales/modes, and chords. Using SmartEars should be (I hope!) largely self-explanatory and easy. Two quick tips:
* To turn off certain answers you are not intrested in (eg. unisons and octaves) right-click on their button (Command-click on OS X)
* To hear sounds played simultaneously (as a chord) instead of arpeggiated, click into the Settings Tab and set the Note Delay to 0";
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 = '';
}
}