var fDesc=new Array();
fDesc[0] = "XFrog plants can be seamlessly integrated into the Library Browser, installing the XFrog Catalog addon, that includes categories, definitions and thumbnails. Most XFrogPlants models are high-poly meshes with opacity maps to define leafs and details. These high-quality models could lead to increased render times if the scenes are not properly optimized.
Forest Pack includes an optimization tool that will help you maintain a low render times while leveraging the full potential of XFrogPlant models.";
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 = '';
}
}