var fDesc=new Array();
fDesc[0] = "Unepic is a combination of platforming and role playing games. The game takes place in Harnakon, a huge medieval castle.
It is set in the hardcore NES Style, yet refined with the latest features. This makes Unepic a very unique game. In Unepic you will find more than 100 different weapons to hit and slay anything that crosses your path.";
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 = '';
}
}