var fDesc=new Array();
fDesc[0] = "Dark Tibia is a free fantasy massive multiplayer online role playing game (MMORPG). Take the role of a valorous adventurer and explore a mysterious world filled with magic and bravery! Meet up with people from all over the world to live through a whole new game experience.
Be a valorous knight, a nimble paladin, a mysterious druid or a mighty sorcerer. Select from various outfits and give your character the looks of your choice. Beef up your hero! Characters have a variety of skills that will raise through training. Fancy some magic? You can fry your enemies with a wide range of deadly spells.
Visit bustling cities, mysterious forests and dreary dungeons. The world of Dark Tibia is huge, and it keeps on growing!";
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 = '';
}
}