var fDesc=new Array();
fDesc[0] = "Eons ago, a peaceful tribe lived in the mountains, enemies surrounding it on every side. To escape, the people sent out scouts to search for a new home in the valley. When the explorers found a suitable spot, the tribe began the process of creating a glorious new civilization!
Help the budding Aztecs gain a foothold in the ancient world by mining resources and constructing buildings. Then upgrade your structures to attract more citizens, train soldiers and ward off the attacks of a heartless enemy. With stunning animation, colorful visuals and finely-tuned strategic gameplay, Aztec Tribe will keep casual gamers entertained for days!";
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 = '';
}
}