var fDesc=new Array();
fDesc[0] = "Make your own spooky flicks with Haunted House, an animated movie making program for 6 year olds and up.
50 delightfully witty and charmingly irreverent animations from Klasky-Csupo - famous for their work in the Rugrats, Simpsons and Duckman cartoons series - make this program perfect for kids with a taste for the spooky! With original music, sound effects and hundreds of stunning graphics, the possibilities for thrilling animated art is limitless.";
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 = '';
}
}