var fDesc=new Array(); fDesc[0] = "In a world festering in cookie cutter match-3 puzzle games, one game stands out of the pack with authority and moons the rest of the games with it's cool sarcastic attitude. Oddictive promises to rob you of your free time and never give it back, not even if you beg for it. The game story? It's a puzzle game...make one up. Here's my first pass: Your boss has stolen all the puzzle pieces from all the popular puzzle games so that you will be more productive at your boring office job."; 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 = ''; } }