var fDesc=new Array(); fDesc[0] = "COLOBOT combines both a real time game of strategy and an initiation to programming. You are at the head of a space expedition and you are assisted only by some robots. Your mission consists in successive attempts at the exploration and colonization of various planets.
You will have to search for the raw materials and energy you need in order to survive. As you go forward, you will be able to build and program new types of robots which will prove of an invaluable help for the completion of your task. You may also want to know that most of the planets you'll be visiting are crowded with primitive and insect-like lifeforms and that you may be forced into fighting them if you want to stay alive."; 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 = ''; } }