var fDesc=new Array();
fDesc[0] = "Trimble Business Center is a powerful surveying application that is the perfect desktop complement to Trimble's full range of survey solutions. Edit, process, and adjust data from all Trimble surveying instruments.
Main Features:
- Import and review field data from Trimble Access, Trimble Survey Controller, and Trimble Digital Field Book.
- Post-Process static and kinematic GNSS Surveys.
- Visualize Trimble VX imagery and point clouds.
- Adjust GNSS, Total-Station and Digital Level Networks.
- Generate and export GIS features and CAD elements from Coded Field Data.";
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 = '';
}
}