var fDesc=new Array();
fDesc[0] = "Easter Eggztravaganza 2 is a game application about painting and hunting for Easter eggs and chocolate bunnies. You are supposed to help build an Easter float and ride in a parade through town with everyone from clowns to cheerleaders, astronauts to marching bands, the Easter Bunny to the Carnival Queen.
Easter Eggztravaganza 2 is crammed with neat puzzles, gorgeous hidden object screens and mini-games that will make the whole family want to play time and time again.";
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 = '';
}
}