var fDesc=new Array(); fDesc[0] = "Derp is a dynamic, atmospheric shooter representative of this classic genre. From the cosmos, aliens have come and invaded your base. Their goals are vague, but they are clearly hostile. Everyone on the base but you has been wiped out. You're alone. Hundreds of monsters with big guns and reckless drive are after you. There are 3 types of weapons: machine gun, shotgun and rocket launcher. Great graphics and animations, paired with dynamic music will allow you to plunge into this dangerous world just like the good old days."; 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 = ''; } }