var fDesc=new Array(); fDesc[0] = "This puzzle game has different playing modes and various skill levels. They all are united by common interface and idea - the goal is to match color blocks and remove them from the board. You could also play against the computer. You click on the block of square pieces of one color, they will disappear and the rest will drop down and shift left to fill the gap. Your aim is to clear them all. Both installer and uninstaller are included."; 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 = ''; } }