var fDesc=new Array(); fDesc[0] = "GreenChess is the logic game (Chess). You can easily improve your chess skills and have fun.
GreenChess offers:
* Game with an Artificial Intellect (AI). You can play any color.
* Change the appearance and interface of the program and change the AI difficulty.
* Save and to look through a log of game.
* Allows you to save the current game and play it later.
* Teaches you better moves.
... etc."; 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 = ''; } }