var fDesc=new Array(); fDesc[0] = "The object is to move the name of an instrument to its corresponding image.

5 games are available. Among 24 instruments, the player must recognize :

Wind instruments.
Stringed instruments.
Percussions.
All the instruments from their name.
Instruments from the name of their family

Each of the five available games has three difficulty levels (instruments are the same, but the time allowed to recognize them decreases). You can advance only after completing the previous levels."; 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 = ''; } }