var fDesc=new Array(); fDesc[0] = "ShaPlus Typing Game is a simple game to practice and improve your typing speed. Objective of the game is to type the falling letters before it hit the bottom.

There are two modes in this software. In Game mode, you must type maximum number of letters before any of the letter hit bottom of screen. In Practice mode, you can directly select whichever level you need to practice. There is an option to select the keys that are to be practiced. You can save up to 10 sets of practice keys."; 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 = ''; } }