var fDesc=new Array(); fDesc[0] = "Absolute Pitch Trainer is a program designed to help users develop the skill of Absolute Pitch. Absolute Pitch is the ability to recognize notes by ear. It is essentially a mapping between the sound you hear in your mind, and the corresponding note on the instrument. Absolute Pitch Trainer uses a specialized algorithm which gradually builds your Absolute Pitch skill level to 100%. Users start out with learning one note, which is played an equal amount of times across all octaves of the piano keyboard. The software constantly gauges your progress, and adds a second note when you are ready for it. This process gradually continues until the entire 12 notes of the chromatic scale are added, and being played across all octaves of the piano."; 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 = ''; } }