var fDesc=new Array();
fDesc[0] = "Stronghold 3 is a real-time strategy computer game.
Main features:
- Realistic physics and cutting-edge graphics bring siege warfare to life in stunning detail
- Story-driven gameplay engages players across two campaigns: combat or economic
- Dramatic nighttime sieges add a new dimension to the Stronghold franchise
- Besiege other players' castles or defend your own in a range of action-packed online multiplayer modes
- Play through accurately re-created sieges from the pages of history. Will you succeed where others failed?";
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 = '';
}
}