var fDesc=new Array();
fDesc[0] = "Travel to a fantasy world, recover your lost items, and defeat Vulcan, the evil being who invaded your land in The King of Fire! Take on challenging Puzzles and conquer a variety of different bosses. Unlock amazing achievements in this incredible game. With unique artwork, and hand-selected puzzles, The King of Fire is sure to please.
- Perplexing puzzles
- Awesome gameplay
- Defeat the evil Vulcan!";
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 = '';
}
}