var fDesc=new Array(); fDesc[0] = "krank is one little casual game. The snake follows your mouse or the analog stick of your joypad. The balls move if you touch them with the snake or another ball. The links are like balls, but they bond together if they touch each other. The stones never move and do nothing else. The magnets, unmovable themselves, attract everything that moves. The number of circles rotating around them indicates how many items may get captured in them. for each level you solve, there will be two more levels available to play, so you can skip levels you don't like."; 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 = ''; } }