var fDesc=new Array();
fDesc[0] = "Dialight is a lighting design software based on the DIALux software platform. Dialight offers a fast and effective way to do simple room calculations; in as little as 10 minutes, this program is able to produce industry standard reports that consider a wide variety of factors and offer a step by step workflow to ensure accurate designs.";
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 = '';
}
}