var fDesc=new Array();
fDesc[0] = "TwistAWord is a fun word game for children from 8 to 88 years (and up).
Choose one out of 8 languages (Catalan, Danish, English, French, German, Latin, Portuguese or Spanish) and try to create a phrase from the words given to you. Cool design, funny sound effects and a competitive element make improving your language skills a treat!";
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 = '';
}
}