var fDesc=new Array();
fDesc[0] = "The Nameless Mod is an enormous single-player total conversion mod for Deus Ex.
Features:
-Discover a unique and intriguing setting based on an actual Internet forum and its inhabitants throughout the years
-Play through 59 levels of engaging gameplay, plus a new tutorial, and even secret bonus maps just waiting for you to find them
-Use 20 original new weapons, including unique weapons which may only be acquired after you've successfully completed The Nameless Mod once
-Dive into a deep world with its own lore: Hundreds of e-mails, books, newspapers, notepads, and datacubes containing custom text
-Customize yourself: Choose between two different Trestkon models with 5 different faces for each, and even eye-wear
-Choose your own path with two parallel story arcs and tons of side-missions
-Enjoy nearly limitless freedom as the world reacts to your every choice, and observe the far-reaching consequences of your actions in a detailed epilogue";
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 = '';
}
}