var fDesc=new Array();
fDesc[0] = "Borderlands™ sends up to four co-op players to the harsh frontier planet Pandora in search of a mysterious Alien Vault legend. Featuring a unique First Person Roleplaying Shooter gameplay, you'll customize your character as you explore and battle enemies in frantic FPS combat.
And what would a Roleplaying Shooter be without loot? Borderlands'™ groundbreaking content generation system creates a near-endless variety of weapon and items to customize your character!
Players can join and leave other players' games at any time, or choose to face the challenges of Borderlands™ alone. All these features combine with a deep, rich fiction and a bold art style to create a breathtaking experience that challenges the conventions of modern shooters.";
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 = '';
}
}