var fDesc=new Array();
fDesc[0] = "Pic-Tac-Toe is a cousin to three-dimensional tic-tac-toe, but it's easier to play, better looking and more fun! You can play against a friend or try your hand against the computer at your choice of difficulty levels. You can even sit back and watch the computer compete against itself. Built-in help and rules demo makes learning practically instant! Graphics are configurable.";
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 = '';
}
}