var fDesc=new Array();
fDesc[0] = "Find Your Own Way Home is a downloadable game for Mac and PC. It has more than 50 levels of games, uses more than a dozen REO songs, and takes approximately 8 hours to complete.
Look for the Golden Ticket hidden in the Game, and you’ll be elgibile to win a Prize Package including tickets to an REO Speedwagon concert and a backstage photo opp with the band.";
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 = '';
}
}