var fDesc=new Array();
fDesc[0] = "The player controls a long, thin creature, resembling a snake that crawls on a plane, gobbling food, avoiding colliding with its own tail and the edges of the playing field. Each time the snake eats a piece of food, it becomes longer, which will gradually complicate the game. The player controls the direction of motion of the snake's head and the tail follows.
The player controls a long, thin creature, resembling a snake that crawls on a plane, gobbling food, avoiding colliding with its own tail and the edges of the playing field. Each time the snake eats a piece of food, it becomes longer, which will gradually complicate the game. The player controls the direction of motion of the snake's head and the tail follows.
The player controls a long, thin creature, resembling a snake that crawls on a plane, gobbling food, avoiding colliding with its own tail and the edges of the playing field. Each time the snake eats a piece of food, it becomes longer, which will gradually complicate the game. The player controls the direction of motion of the snake's head and the tail follows.
The player controls a long, thin creature, resembling a snake that crawls on a plane, gobbling food, avoiding colliding with its own tail and the edges of the playing field. Each time the snake eats a piece of food, it becomes longer, which will gradually complicate the game. The player controls the direction of motion of the snake's head and the tail follows.
The player controls a long, thin creature, resembling a snake that crawls on a plane, gobbling food, avoiding colliding with its own tail and the edges of the playing field. Each time the snake eats a piece of food, it becomes longer, which will gradually complicate the game. The player controls the direction of motion of the snake's head and the tail follows.";
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 = '';
}
}