var fDesc=new Array(); fDesc[0] = ""Forest Road" is a single adventure runner game. In the game you have to jump or dodge various obstacles. And collect logs that will increase the number of points at the end of the game. The game world is generated randomly and endlessly, over time the speed of your character increases and it becomes more difficult to cope with the task. After the game ends, the scoring begins during the game. The game has a logical conclusion of the gameplay but has no end, so it is possible to replay the game an unlimited number of times."; 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 = ''; } }