var fDesc=new Array();
fDesc[0] = "V-Ray Studio Setup Pro is a plugin for automating studio lighting setups for use with the Autodesk™ 3ds Max™ and V-Ray™ rendering engine.
Main features:
-Live creation of Studio Setups.
-Quick access to all of the items properties.
-Completely customizeable generated Backdrops and Base Walls (length, height, width, color, etc.).
-Completely customizeable generated Softboxes (light parameters, shape, length, width, etc.).
-Completely customizeable generated Reflectors (color, shape, length, width, etc.).
-Pre-built studio lighting and camera setups.
-Adapts V-Ray settings depending on choosen resolution.
-Switch between Low and Production settings in one click.
-User rendering Presets Manager / Editor.
-Compatible with 3ds Max 2010, 2011.
-Compatible with V-Ray 2.0
-Friendly and simple interface";
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 = '';
}
}