var fDesc=new Array(); fDesc[0] = "The Ping Pong demo illustrates some of the new graphical techniques made possible by the new features of Microsoft DirectX® 10.1 and the ATI Radeon HD 3000 Series of graphics processors. First shown on the AMD "Codename: Spider" platform, the demo shows off a new lighting technique known as real-time global illumination, together with a scalable physics simulation optimized for multi-core systems. It's also interactive - move around the room and see how many ping pong balls you can maneuver into the goals!"; 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 = ''; } }