var fDesc=new Array();
fDesc[0] = "Speedy Bubbles comprises a move style game for kids.
This game contains all the best stuff from similar games, so now you've got a unique game that has no analogues.
There are 4 games in one, not 1 of 2:
- 4 Type Games
- Local Top Score
- Play Full Screen
- Free of Ad Banners.
System requirement;
-OS: Windows XP/Vista
-Processor: 600 Mhz
-Memory: 256Mb
-Free Space: 144Mb";
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 = '';
}
}