var fDesc=new Array();
fDesc[0] = "Arasan is a tiny chess program with an opening-book database of over 800,000 moves. It features a nice interface where you can play against the computer. Arasan can also be run as a console-based chess engine, which can be used with with Winboard, xboard, and other compatible programs.";
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 = '';
}
}