var fDesc=new Array();
fDesc[0] = "A powerful VRay batch rendering tool for 3dsmax.
* Supports batch multi-file rendering.
* Supports batch multi-camera rendering.
* Supports batch multi-camera + multi-file rendering.
* Can batch generate file paths in the file list with one keystroke.
* Can produce at least 2 channels automatically.
* Can skip any not important maps or uvwmaps (skip missing maps) in quiet render mode when rendering.
* Auto shutdown computer after rendering .
* Cool down your CPU temperature( protect your PC ) after a long time 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 = '';
}
}