var fDesc=new Array();
fDesc[0] = "CryENGINE® technology is world famous for its award winning rendering and CryENGINE® 3 is no exception. CryENGINE® 3 is the fastest, high-end renderer in the world, with new features specifically designed for console platforms.
Benchmark-setting graphical performance, near-photorealism in indoor and wide-open outdoor environments and extra-ordinary real-time special effects are some of the hallmarks of CryENGINE® technology. With CryENGINE® 3, scalability across multiple platforms is a further evolution to enable great looking games – regardless of the target platform.";
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 = '';
}
}