var fDesc=new Array(); fDesc[0] = "It is a basic strategy sound computer game that simulate desk board game.
There are a dog and a cat on a field 25 X 25 cells in size. There is a fence around the field. There are 4 trees on the field. There is one tree in each corner of the field. The task of the dog is to force the cat to climb up the tree.
Script for this game is one of the winners of our competition."; 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 = ''; } }