var fDesc=new Array(); fDesc[0] = "Stack n Roll is a fun and interactive puzzle game. It is easy to play yet challenging enough to give your brain a good workout. See how high you can score and compare your score with other players around the world. It has a simple interface, all you have to do is drag and drop the blocks that have the same color one over the other."; 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 = ''; } }