var fDesc=new Array();
fDesc[0] = "Martin ShowDesigner (MSD) is a unique and userfriendly lighting and set design software package, brilliant for developing realistic 3-D lighting simulations. Invaluable as a high quality production or sales presentation tool, MSD allows you to create realistic set and lighting design renderings using reflection, transparency, lighting, shadow and smoke.
Main Features:
- MSD 5 new 3D Graphic engine delivers stunning real-time quality rendering.
- Fixture beams showing true-life light distribution.
- Animated smoke with adjustable density and evenness.
- Camera animation using intuitive time-line control.
- New User Interface with sidebar for quick access to everything.
- New drag-drop object and fixture onto 3D space
- New ISO Camera view for easy manipulation of objects in 3D view.";
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 = '';
}
}