var fDesc=new Array();
fDesc[0] = "It allows the user to switch from the modeling mode to a photo-realistic environment .
In addition, the time-consuming creation of static images via batch renderer and conversion of the data for use in other visualization tools are things of the past, as a high-resolution hardcopy can be generated at any time simply by snapshotting the desired image.
Rendering environments (cube, cylinder, sphere)
IBL (Image Based Lighting).";
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 = '';
}
}