var fDesc=new Array();
fDesc[0] = "After the login, you can create your first character.
At the beginning, you can choose between Niki and Lunlun and both have the same abilities.
As soon as you have decided for one of them, it is unlocked in the character selection room.
Now you just have to click on the 'create character' button in the lower left corner and you are directed to the 'character creation' menu. Here you can give him or her a name and arrange the first 5 points on the attributes in order to give your character a personal touch.
Now you are ready to play and you can start a match with „connect“.
If you want to play different characters such as Lucy or Dhanpir, you can buy them in the shop.";
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 = '';
}
}