var fDesc=new Array();
fDesc[0] = "OptiWin3D Pro is an offer to users who primarily seeks fast and easy projecting with focus on CAD integration.
Main features:
- Can work directly with DWG drawings. Not necessary to convert to other formats (SAT, 3ds…)
- Import 3D models from DWG files and do lighting design in OPTIWN 3D PRO
- Integrated calculation of the LENI factor with graphical presentation
- Big time savings in complex 3D models compared to manually creating the furniture.";
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 = '';
}
}