var fDesc=new Array();
fDesc[0] = "Well, life doesn’t get any funnier than with Piggy The Plumber game.
It is a cute little game where you play a piggy that needs to catch as many toolboxes as possible. Tools are falling from the sky and your goal is to catch them all. Beware of the falling screwdrivers and other free flying tools. Your pink Piggy the Plumber may have a helmet, but it will hardly protect him from your clumsiness. Remember, if you miss catching your toolboxes they may hit you. Trust me; you wouldn’t want that to happen.";
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 = '';
}
}