var fDesc=new Array();
fDesc[0] = "PloppSL allows you to create intriguing Sculpted Prims for SecondLife™ easily. Both texture and model are created in one step. Simply paint the front and back side of your model and it will be converted to a Sculpted Prim by PloppSL.
PloppSL is a specialized version of Plopp the award winning 3D Painting Tool for kids. It brings the ease of Plopp 3D model creation to the SecondLife™ community. It is free to use, but we kindly ask for your support to help with further development.
Main Features:
- You can create or use different textures for the front and backside of your model. Paint in your favored paint program, import the images into PloppSL by drag&drop and turn them into 3D models with one click.";
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 = '';
}
}