var fDesc=new Array();
fDesc[0] = "PetzA is an add-on for Petz 2, 3, 4, 5 and Babyz that gives you tons of cool new features and even fixes bugs in the game. PetzA appears as a new menu item at the top of your Petz or Babyz game.
Features:
- Babyz and Petz - take out an unlimited number of Petz and Babyz at once! Just keep clicking the "Pick a pet" button to bring out more.
- Reduce the size of oversized petfiles with the family tree trimmer
- Add new playscenes to the Babyz house";
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 = '';
}
}