var fDesc=new Array();
fDesc[0] = "The Chess Tutor is a Windows program for the learning of chess.
In the first step, the elementary knowledge is acquired which every successful chess player needs. Step 1 contains 23 lessons, 1800 exercises and 66 games.
The Chess Tutor runs on all computers with Windows XP, Windows Vista or Windows 7 and is suitable for children from 8 years and all adults.";
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 = '';
}
}