var fDesc=new Array();
fDesc[0] = "Absolut Chess (AC) is a funny and complete chess for all players. It allows battles in computers nets (LANs and Internet) where your opponent plays remotely with you, or front-to-front battles, where the two players combat in a single computer. When the choice is to face the machine, AC presents 3 levels of difficulties that will prepare you to future fights.
MAIN FEATURES:
-3 levels of difficulty;
-Network support (local nets and Internet);
-Save and recovery of game;
-Game history;
-Chat messages in net game;
-Sound effects;
-3D graphics and mini visualization 2D;
-2D view mode;
-Board inversion;
-Come back of movement;
-Help;
-Time control;
-Movement validation;
-Lifetime support and updates;
-Replay and history navigation.";
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 = '';
}
}