var fDesc=new Array(); fDesc[0] = "LolBlocks - A fun puzzle game where the aim is to combine
colored blocks until they burst. Once all the blocks
disappear from the playing field, you advance to the next level. But in reality, it's not
as easy as it seems. LolBlocks have gravity, and are thus
attracted to the Earth. In addition, some levels present in the rocks
can move, cannons fire on LolBlocks and
needles, enemies, doors, teleporters, and other obstacles await you."; 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 = ''; } }