var fDesc=new Array();
fDesc[0] = "Kings and Conquerors: The Hellenistic Era is a total conversion mod for Rise of Nations: Thrones and Patriots that aims to bring the Hellenistic period to life.
Main features:
- New units: Kestrosphendonetai and Hiera Ile for the Macedonians, Vigiles for the Romans.
- A number of textures and models have been improved.
- Many of the scripted features have not been implemented, so you won't be able to spawn mobs from cities or convert enemy citizens into slaves for instance.";
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 = '';
}
}