var fDesc=new Array();
fDesc[0] = "Tired of playing chess against your computer--a near-infallible machine with no real flavor to its game? Wouldn't you rather play a human instead?
Icarus is the newest interface for the Internet Chess Club, an online group of thousands of chess players. Its beautiful, easy-to-use interface will help you get connected and playing chess in no time.
Join an online chess community that offers lectures, lessons by grand masters, over a hundred IRC-like chat channels, tournaments, simul exhibits, chess variations, and more!";
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 = '';
}
}