var fDesc=new Array();
fDesc[0] = "This program gives you a mascot to sit on your windows and keep you company while you toil away the hours. When you are bored or just need a little reassurance that you are still alive, click on the mascot to see its reaction. You might even get a sound bite!
When you get tired of a particular mascot you can load another. What's more, you can change the mascot periodically throughout the day. You can even have a Mascot Of The Day!";
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 = '';
}
}