var fDesc=new Array();
fDesc[0] = "You were a lot to download Get A Life, and we hope you enjoyed it. But some people complains about the difficulty of the mod and some bugs. Even if the beta-tests helps to reduce the number of bugs, when a mod is released there are often surprises, and GAL was no exception to the rule.";
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 = '';
}
}