var fDesc=new Array(); fDesc[0] = "Zatacka is an arcade multiplayer game for 2-6 players on one keyboard, it is a clone of Achtung die Kurve, the classic dos game.
You handle the line using two keys or mouse buttons (to turn left and right) and you must sidetrack lines of other players and, of course, hit a wall or barrier. When one of the players dies, the one who managed to survive gets one point. When there is only one player alive, the round is finished. Each game consists of eleven rounds.
Zatacka is an open-source project, and works on both Windows and Linux."; 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 = ''; } }