var fDesc=new Array();
fDesc[0] = "Castles and Kingdoms is a free online strategy game in which you'll forge your empire in the age of castles and kingdoms. You will construct castles to protect your kingdom, build a tremendous army of archers, knights, swordsmen and other fearless units, and join alliances with friends to conquer the world together.";
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 = '';
}
}