var fDesc=new Array();
fDesc[0] = "SetLi (Set Line) - is a challenging and also addictive small game.
The objective of the game is the installation of blocks in a source state.
The game field consists of four zones. Each zone is filled in with units of one type. Then the units are hashed. The purpose of the game - to restore initial arrangement of units.
The motion of units is executed at pressing buttons located on a perimeter of a field. The motion is possible only, if there is a free cell at the end of a column.
The limited number of courses is given. A gradually the complexity of game will increase.";
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 = '';
}
}