var fDesc=new Array(); fDesc[0] = "Desperate Hunter is a game in which you play as a hunter, and your task is to kill different species of animals. The distance from which you shoot the animals is very important. The greater the distance, the more points are awarded. Hide in the trees to ambush the animals; you may also buy scaling for a better view."; 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 = ''; } }