var fDesc=new Array(); fDesc[0] = "The Survey Import and Export program works with AutoCAD (dwg) and coordinate data in formats such as txt, ascii, and csv. The configurable interface makes matching survey descriptions (as assigned in the field) to text, blocks (with attributes) or various point types, straightforward. SQL drives the included Survey.mdb to support the constuction and management of field book description templates. The description matching functionality makes routine, or client specific survey to drawing data transfer automated and versitile."; 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 = ''; } }