var fDesc=new Array(); fDesc[0] = "Hamster fight (stand-alone desktop version) is a free game in which you will have to use the mouse to hit the rats that appear on the board. As you get more rats, your scoring will increase and you can register your result in the top 10. It also displays the time and the score on the main screen."; 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 = ''; } }