var fDesc=new Array();
fDesc[0] = "-> easy-to-use drag and drop interface
-> a cursor that lets you know whether you can move a particular piece
-> 7 levels of gameplay - from 'Novice' to 'Champion'
-> you can
-> take back and replay moves
-> set a time limit
-> save and restore games
-> setup the board to any starting position
-> decide who goes first
-> pick the color of your pieces
-> switch sides at any time
-> chose to economize RAM usage at a slight speed penalty
-> a bonus feature: you can play a game of reverse-checkers, where you try to be the first one to have nowhere to go!";
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 = '';
}
}