var fDesc=new Array();
fDesc[0] = "Owners of a PhysX Accelerator will get the unique opportunity to tear up Unreal Tournament 3 through some exclusive and revolutionary new features never before seen in PC games!
Main Features:
- Three new levels of environmental destruction with true gameplay impact!
- Full multiplayer capabilities
- Maximum-Impact PhysX using the full capabilities of hardware-accelerated physics
- Destructible walls, floors, walkways and rooftops";
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 = '';
}
}