var fDesc=new Array();
fDesc[0] = "UnitedGenerals is an online roleplaying game with a martial arts theme. You have 5 main classes:
Trojan: Trojans are an aggressive class that take some skill to use but they are also good for PKing.
Archer: Archers are very good for plvling and hunting to get items & gold.
Warrior: Warrior is good for defence and tanking monsters but they can PK too.
Water Taoist: Water Tao is good for stigma, shield, and revive. This tao is better for helping people.
Fire Taoist: Fire Tao is a strong tao with Tornado and other strong spells. This Tao is better for attacking people.";
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 = '';
}
}