var fDesc=new Array(); fDesc[0] = "Vertris, developed by Andrés Rassol, is a basic multiplatform clone of the classic Tetris game. This game is a good alternative to play without any limits, whenever you have some free minutes or after a stressful working day. In Vertris you will find the classic Tetris gameplay, without any variations, nor game modes, or extra features.
The interface has a really nice appearance, and the pieces are very colorful, a lot better than the original. Its graphics have been made using Allegro library. It would have been great, however, if the program had included some tunes or sound effects during the game, to make it even more appealing. We can play Vertris in windowed or fullscreen mode, restart a game or pause it, and apart from this there are no more options.
Vertris is available at no cost, under GNU General Public License (GPL). It is a light-weight program, easy to install and fun to play. However, if you are looking for a game with different game modes, levels to choose from, and other features, then this game may disappoint you."; 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 = ''; } }