var fDesc=new Array();
fDesc[0] = "PianoMarvel it is a tool designed to help you learn to play the piano.
Main Features:
- Instant feedback shows you where mistakes were made so you are never left wondering if you are playing a note or rhythm incorrectly again.
- Progress tracking shows you where you have been and where you are going with your practice.
- Move at your own pace with Piano Marvel.
- The Expanding Libraryof songs and exercises in the repertoire will ensure that you never run out of songs to play.
- Video Tutorials are provided to guide you on the fundamentals of piano playing.
- A large variety of exercises help you to get a well rounded understanding of playing 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 = '';
}
}