var fDesc=new Array();
fDesc[0] = "Fun, flirty, and frolicsome poses for V4 and MilCat to bring out their felinicity. With matching poses for the Felinicity outfit, these are just purrfect for your next fantasy render!
Plus a morphing rock for V4 and the MilCat to sit or play on.
Main Features:
- 16 Poses for V4
- 16 Poses for the Felinicity Outfit
- 22 Poses for the Millennium Cat
- Morphing Rock";
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 = '';
}
}