var fDesc=new Array();
fDesc[0] = "Pet Workshop is a tool which lets you edit and change Petz breeds (Catz and Dogz) while you view them in 3D! Pet Workshop makes creating breeds as easy as point and click.
Features: Edit dog and cat breeds, create new non-overwriting breeds! Edit and import textures. Decorate your Petz with downloaded Tattoo files, or create your own! Add add-balls and new linez, completely change the shape of your breed! Edit and change variations in your breed for a different pet every time you bring it out of the adoption center. Rotate the view of your pet, zoom in and out with the mousewheel for full control.";
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 = '';
}
}