var fDesc=new Array();
fDesc[0] = "Riders of Asgard is a historically correct Viking BMX Game, with historically accurate Viking bikes and locations. It lets you choose your own location and path to play. You get a 3D interface and customizable character; you can earn points while performing stunts, and use them to purchase upgrades such as helmets, shields, frames, and wheels.";
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 = '';
}
}