var fDesc=new Array();
fDesc[0] = "SOFTBOX (HDRI) for TurboCAD is a library of over 700 studio-style High Dynamic-Range Images (HDRI) designed to help the TurboCAD user produce professional renderings with minimal lighting setup time. Through the use of Image Based Lighting (IBL) and the Render Scene Environment in compatible versions of TurboCAD Professional and Deluxe, SOFTBOX (HDRI) provides stunning, studio reflections to your materials and soft, realistic light to your scene.
With over 700 files to choose from, the included HDRI Media Browser helps you locate the right High Dynamic-Range Images for your project quickly. You can rank your favorite files and easily find them later.";
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 = '';
}
}