var fDesc=new Array();
fDesc[0] = "ChessBin is a great chess engine that contains many of the features found in a commercial chess playing program such as Save Games, Opening Book, FEN and PGN, with a more attractive price of free.
ChessBin allows you to play as white or black it will flip the board when playing black.
It supports standard chess rules such as:
All Tie Scenarios:
- Three move repetition
- 50 move
- Insufficient Material
As well as all rules related to:
- En passant
- Castling";
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 = '';
}
}