var fDesc=new Array();
fDesc[0] = "Melodic ID is unlimited, graduated (easy to advanced) 4 bar melodic dictation in all keys, simple and compound meters, with instant feedback, immediate scoring, and self testing.
Main features:
-If you want to practice melodic dictation, demo program with first level (out of 9) enabled,
-Melodic ID combines Pitch ID and Rhythm ID for advanced practice.
-Select key, scale steps, maximum skip size, meter and rhythm patterns. Program generates and plays question.
-Click rhythm patterns to notate rhythm, repeat, correct, and score rhythm.
-Repeat question. Click screen or MIDI keyboard to notate melody, check for errors, repeat, correct, and score.
-Program indicates repetitions per question and average overall repetitions.
-User may set Metronome, octave, and Midi sound.";
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 = '';
}
}