var fDesc=new Array();
fDesc[0] = "Play nine checkers variations from throughout Europe, including Alquerque (the oldest living checkers variation), Polish Draughts (played on a ten- by-ten board) and more!
You can play against a friend or against a fast and deadly computer opponent. And after you register, you can create new variations of checkers by mixing the rules and playing-boards from other variations--you can even play your creations against the computer!";
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 = '';
}
}