var fDesc=new Array();
fDesc[0] = "MMF is a free, browser-based mafia-style RPG and massive multiplayer online game, which means you don't have to download anything at all. You play the game completely through your web browser, and best of all - you don't have to pay for anything.
In Mafia MoFo, you choose your own path. Whether you want to train your stats at the gym and become the strongest player or become the wealthiest mobster in the game.
The path you choose in the game is entirely up to you!";
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 = '';
}
}