var fDesc=new Array();
fDesc[0] = "Virtual Surveyor is a program that allows you to handle large volumes of data that come with UAV TrueOrthophotos and elevation models by bringing them together in a virtual environment. It includes features such as:
- Drawing breaklines and reference points in a 3D environment
- Perform volume analysis
- Realtime calculation of elevation contour lines, slopes and slope directions
- Direct export to CAD and GIS.";
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 = '';
}
}