var fDesc=new Array();
fDesc[0] = "When an evil ruler greedily taxes his people to near starvation, there’s always one who rises against all odds to fight for what’s right ... but fighting for the good of the people often results in fighting for one’s family. Help our brave new hero rise from humble beginnings to becoming the champion of which stories are written for centuries.
Main features:
- Gather your band of merry men
- Use unique skills to solve puzzles
- New mini-games and archery competitions
- Interact with characters, good and evil
- Rob from the rich and give to the poor!
Requirements
- OS: Windows XP/Vista
- CPU: 1.0 GHz
- RAM: 512 MB
- DirectX: 8.1
- Hard Drive: 183 MB";
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 = '';
}
}