var fDesc=new Array();
fDesc[0] = "Phinball Wizard is a downloadable pinball game that promoted Disney's Phineas & Ferb cartoon.
The game features audio and video clips of the characters, five themed pinball missions, a hidden table and a timer to show you exactly how long you need to wait until the next episode is shown.
As the game is created in Adobe Air, the same content will operate on both Macs and PCs. It can pull in remote data on the fly and will automatically update when a new version is released.";
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 = '';
}
}