var fDesc=new Array();
fDesc[0] = "An unnerving, spooky forest and an enraged horde of the undead await in Cabin, UGX's first team-built release.
This realistic new experience offers a scarier alternative to the typical survival gameplay of World at War zombies, with its own storyline, tweaks and brand new additions, including:
- Strong objective based gameplay without detracting from the survival element of the game
- Unique visuals to create a realistically "creepy" atmosphere, including dynamic lighting
- A vast array of custom sounds, including character voiceovers
- Brand new trader system for ammo purchases and new attachment upgrades to weapons
- Difficult gameplay; the level is unforgiving. Changes are abound every time you play, so don't expect to find everything where it was before...
Weapons are scattered on the forest floor; no longer are you buying your guns from the wall, because now you'll have to scavenge in order to survive.";
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 = '';
}
}