var fDesc=new Array();
fDesc[0] = "Cartoon Xonix is a very successful new remake of the all-time classic Xonix/QIX game. In this one you get to drive a funny little train around the game field. Your goal is to save your favorite cartoon heroes who were trapped behind a magic wall by a mean Warlock. His sly servants will try to get in your way and stop you. Be careful and avoid hitting them! We prepared a lot of different bonuses for you that will help you succeed.
This game is great for both kids and grown-ups. It will improve your speed and reaction and bring you a lot of funny moments! You'll definitely enjoy the wacky music and sound effects. Download it now and see for yourself!";
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 = '';
}
}