var fDesc=new Array(); fDesc[0] = "In the near future, robots will replace the human being. But to find out who is better, robot or man, you must find volunteers. You are a simple mercenary who was forced by circumstances to participate in the arena with robots. Kill the robots, earn money and buy new guns. With better weapons you are more likely to survive this battle."; 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 = ''; } }