var fDesc=new Array();
fDesc[0] = "Super Mario Bros 3 Editable is a free PC version of the classic Nintendo game, but fully customizable: you can create new levels and worlds and change the sprites and sounds.
Main features:
- Create your own levels and worlds.
- 10 brand new worlds included!
- Share your levels with other players.
- Features of Super Mario World and Super Mario 2 included.
- New music and background images.
- Visual effects (rain, night and more).";
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 = '';
}
}