var fDesc=new Array();
fDesc[0] = "AOP Viewer displays AOP files in 3D and measure distance on them . It can also display cross sections and provides several properties about the file.
- Full support for multiple opening and viewing multiple AOP files at once
- Millimeters or inches in all views and properties
- Can handle very high resolution files (Tested with files containing over 40 thousand points)
- Drag and drop support for opening files for dragging onto the application or viewing window
- Resizable and disclosable views";
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 = '';
}
}