var fDesc=new Array(); fDesc[0] = "This is a remake of the classic Pong video game. Pong has captured the attention of thousands and is still fairly popular today. It may be a bit old fashioned compared with the modern videogames with their 3D graphics but this game with only a few pixels is still much more addictive and entertaining."; 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 = ''; } }