var fDesc=new Array();
fDesc[0] = "World Empire V v5.0 is the latest version in the World Empire series, going strong since the release of the original MS-DOS version in 1991. World Empire is similar to strategy board games like RISK(TM) - but better! You begin the game with 56 Armies (actually divisions) in normal mode or 30 Armies in expert mode, all placed in a randomly selected country.
Because each player is given countries that strongly support his/her "ideology", strategy will likely be heavily influenced by this initial positioning. A player must also must occupy each unfriendly country that is conquered with a sufficient amount of armies or there could be a revolution!";
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 = '';
}
}