var fDesc=new Array();
fDesc[0] = "Try to rule your land as the prince. Build and maintain villages, towns and even big cities! Defend your minions against hordes of monsters and bandits. Be a just and determined ruler, and realize the dream of becoming a brave king who leads his people to a better future!
"Be a King" is a fantasy strategy game. It offers fast and entertaining game play for all players. You - as a ruler of a medieval kingdom - must build towns and cities, defend them against raiders and perform various objectives. Enjoy the medieval atmosphere in lovely fantasy graphics!";
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 = '';
}
}