var fDesc=new Array(); fDesc[0] = "The Flop game is for those whom like to find precise algorithms of problem solving.
Before the beginning of game all game field is filled in with units. Each unit can be in three states, which can sequentially pass from one in other. Your task to install units on all a field in one state.
The limited number of courses is given. From a level to a level the complexity of game will increase.
This game is a simplified version of game FlopLi."; 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 = ''; } }