var fDesc=new Array(); fDesc[0] = "Mini Tetronimo is an educational game designed to teach you the names of musical notes.

As notes fall from the top of the window, you must use arrow keys to move the notes to the box corresponding to their name.

- Right arrow key to move the note towards the right-hand side.
- Left arrow key to move the note towards the left-hand side.
- Down arrow key to accelerate the speed of movement of the note.
- Up arrow key to return to the previous speed.

The best scores are saved at the end of each game.

This program is free"; 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 = ''; } }