var fDesc=new Array();
fDesc[0] = "Driftmoon is an adventure-roleplaying game in which the last hope of an enchanted world lies in an unlikely alliance between a hyperactive firefly, a queen panther and a fellow who's lost all but his bones. Driftmoon is a game full of exploration, captivating stories and quests, charming characters and countless delightful details.";
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 = '';
}
}