var fDesc=new Array();
fDesc[0] = "Tic Tac Dough is a simple game but provides a lot of fun and experience.
Tic Tac Dough is a PC game where the player may choose step-by-step one from 9 options. Each option hides the words : tic, tac, dough or a sum of money.
The player has to reach the biggest sum of money before choose the options which include the magical words.";
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 = '';
}
}