var fDesc=new Array();
fDesc[0] = "Krakout unlimited 2' is a remake of the popular C=64 arcade game 'Krakout', and just like in old times you have to destroy bricks with a paddle and a ball! Blast your way throu UNLIMITED, always different levels, use tons of cool items, break the highscore and publish it online at krakout.com! Fight against funny enemies and play together with a friend - simultaniously! Try it for free as long as you wish or buy it for only 12,95 USD! Learn more!";
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 = '';
}
}