var fDesc=new Array(); fDesc[0] = "An exciting 3D shooting gallery in a spooky Halloween setting. The game will provide you with fun moments ... and perhaps some really bad ones too. You must perform tasks at various locations - from caves to castles. Get ready to strike many targets and you'll need to hone your shooting skills to score high. Initially your enemies will be pumpkins and bats, but as you advance you will shoot skeletons and battle huge bosses. Killing monsters will earn money which you can spend on new weapons and ammo."; 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 = ''; } }