var fDesc=new Array();
fDesc[0] = "Room War was the winner of The Game Creators Alienware Competition. You only need to play this game for a few seconds to see why it won.
The game takes place inside a brilliantly modeled 3D bedroom. The details in this room go way beyond what you expect from a freeware game.
The idea behind Room War is extremely simple, but very effective. You fly around the room, protecting your multi-display Alienware computer from the other evil aliens flying around.";
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 = '';
}
}