var fDesc=new Array();
fDesc[0] = "Renditioner Express is a free, photorealistic rendering plug-in to Google SketchUp 8.
Main features:
- Renditioner Express supports a maximum render size of 640 x 480 pixels.
- Disabled Printing from file and from the screen.
- Inability to render directly to file.
- Limit of 3 snapshots per model.
- Inability to render snapshots.
- No support of sub-image rendering";
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 = '';
}
}