var fDesc=new Array();
fDesc[0] = "A long time ago, sometime, somewhere in a land of knights in shining armor and burning peasants a war had begun...
King Arthur's Gold - affectionately known as KAG - is an unique build 'n' kill game.
Main features:
- Build Fortresses and Contraptions
- Knock down other people's meticulously-built Castles with Bombs
- Catapults and Siege Engines
- Addictive 2d gameplay combining Action, Strategy and Teamwork
- Beautiful 16-bit stylized graphics";
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 = '';
}
}