var fDesc=new Array();
fDesc[0] = "VMCoolumns is an original, new type of logic game.
The game has simple and absolutely clear gameplay.
You will find five entertaining episodes and a set of various and progressively more difficult skill levels.
Full Version Features:
Unlimited game play.
Play in 5 different Coolumns games!
Save your games to start where you left off.
Amazing full screen graphics.
Record your 120 top scores.";
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 = '';
}
}