var fDesc=new Array(); fDesc[0] = "Mazzika is a program that lets the computer keyboard act as a piano keyboard for playing music. It supports middle-eastern music and Arabic music via providing 1/4 tones and allowing "maqam" selection. The selected maqam is reflected visually onto the piano keys, by highlighting the maqam notes and indicating 1/4-tone shifts. Mazzika allows recording the played pieces and saving them as MIDI files. When replaying a recorded piece, or any midi file, the piano keys are automatically animated as if the piece is being played on the piano. The user can control the replay speed."; 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 = ''; } }