var fDesc=new Array();
fDesc[0] = "Tetronimo is an educational game designed to teach you the names of musical notes in different clefs: Treble, Bass, Baritone, Soprano, Mezzo-soprano, Alto and Tenor clefs. In this software, as in Metronimo Tetris, you must move a note to the box corresponding to their name.
The first section allows one player to get acquainted with the game. The second section allows 2 players to be in a confrontation. The third section allows one player to try to obtain the best score (the 1000 better scores are saved).";
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 = '';
}
}