var fDesc=new Array(); fDesc[0] = "ESP Whoopass is a boxing game, based on the ESP Pinball game. Mr. Whoopass is the barman in the Silver Dollar Saloon and you like visiting this saloon, although Mr. Whoopass does not really contribute to the nice atmosphere. Maybe it's time to teach him a lesson! Scores are spoken to you and when you miss just once, the game is over. Detailed instructions will appear in the program group in the windows start menu for you to read before you start playing"; 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 = ''; } }