var fDesc=new Array();
fDesc[0] = "Dofus is a massively multiplayer online role-playing game (MMORPG). Its concept is mainly that of a tactical game featuring wild humor but with a unique style. It has been created both for experienced players and for casual players too.
It comes with a cool strategic fighting system which is a rare feature in MMORPGs. While playing Dofus, you can take part in numerous quests, you can master different professions, explore regions of the world between many other activities.";
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 = '';
}
}