var fDesc=new Array();
fDesc[0] = "Piggly Christmas Edition is a game about a pig. What makes this one a Christmas Edition is that the pig wearing a Santa’s hat. The protagonist of this game is a female pig that is a specialist at cooking apples dessert. The game is divided into four seasons; each of one has two sets of four levels (three regular levels plus a bonus level).
You have to gather apples, collect sweets, and discover secrets to gain points.";
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 = '';
}
}