var fDesc=new Array();
fDesc[0] = "Romanceofthe Three Kingdoms III is a game set in ancient China. Manage the divided chineese kingdoms and establish relations with your neighbours.
Romanceofthe Three Kingdoms III is completely free. You may play it as much as you like without paying a single buck. In exchange for playing it, you are instead asked for a small favour. You are encouraged to send any comments you might have about this game.";
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 = '';
}
}