var fDesc=new Array();
fDesc[0] = "Funky Ball is an interesting puzzle game for free. The goal in each level is to get your ball to touch the pink platform. Try to complete all levels as fast as possible and submit your score. Rotate the ball with the left and right arrow keys.
Click on the game screen to start steering the ball. Hit the pink platform with the ball to complete level.
Use left and right arrow keys to rotate ball in desired direction. Have fun and good luck!";
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 = '';
}
}