var fDesc=new Array();
fDesc[0] = "GPSeismic® is a suite of survey, mapping, and data management applications to support geophysical exploration.
GPSeismic applications offer advanced functionality to assist
the GNSS, INS, and conventional surveyor with a variety of tasks including the following:
-A wide range of both graphical, numeric and SQL based controller upload point selection methods and direct raw data file processing capabilities.
-Support for numerous survey systems with provision for import of data from any ASCII or binary file with
known structure.";
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 = '';
}
}