var fDesc=new Array();
fDesc[0] = "Lolbob2 is a funny arcade game. You control lolbob2 - one of the goofiest characters in the whole Internet. Your task is to survive as long as possible, avoiding the enemies that are constantly re-spawning. There is 4 bonuses in the game: bonus for reducing the enemies, slowing down the enemy, lolbob2's father (lolbob from the first part was great and raised lolbob2; he calls daddy to the rescue), and lightning, which kills all enemies. In addition, there are 2 stars: one huge and the other small. Both the stars reward points, the small giving 1-1000 points, the huge always 3000 points! There is a tutorial in the game, where you can play without dying (with deaths counted)! Lolbob2 is controlled by your mouse.";
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 = '';
}
}