var fDesc=new Array();
fDesc[0] = "Plan, Estimate, and Manage Your Static Scanning Project
Features:
- Utilize aerial imagery from multiple online sources including Bing, Google and Yahoo maps
- Place scan positions using automatic control detection and system range
- Import or create control coordinate network
- Identify three possible scan position times based on traffic conditions
- Accurately estimate project time and cost
- View project in any Android smart phone using the free “TopoPLANNER Viewer” app from the Android Market";
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 = '';
}
}