var fDesc=new Array(); fDesc[0] = "Lucas chess is a Chess game with 40 chess engines of varying levels, from 0 to 3300 elo. In Lucas Chess there are several competitions, and in two of them you can publish the results.
The first is a one-to-one competition against all the engines, starting with the weakest; initially in each engine many hints are available, and as you progress, the are reduced. And in the second, Lucas-elo, where you can deal with all the engines in your range of score and add or subtract points according to the results of the games.

Lucas chess provides and extensive list of training modes which can be used to improve your skills."; 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 = ''; } }