var fDesc=new Array(); fDesc[0] = "This application is a pool game which provides a very attractive interface. The current version adds an automatic, online player ranking system. Often what makes the most exciting game of pool is a close match with a competant opponent. When searching for an opponent online, every player's skill ranking will be publicly visible. With this ranking to guide you, you will find yourself always able to play the perfect game of pool against the perfect opponent, whenever you want"; 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 = ''; } }