var fDesc=new Array(); fDesc[0] = "Life on Mars is a strategy game, where you have to establish your own colony on Mars.
Your goal is to colonize Mars. For this mission you must build several structures and take into account your supply of water, food and energy as well as factors of housing, health, communications."; 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 = ''; } }