var fDesc=new Array();
fDesc[0] = "Smashing Toys : An indie game not like the other indie games. His graphic quality call to mind "AAA games", but Smashing Toys was developped only by a small team.
His funny and dynamic gameplay and his awesome graphics promise you hours full of fun; take a wicked delight in breaking without scruples toys and vehicle of the childhood.
Take care of the Smashing Toys, they are not always as cute as they seem !";
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 = '';
}
}