var fDesc=new Array();
fDesc[0] = "The GNSS-Lab Tool suite (gLAB) is an interactive educational multipurpose package to process and analyze GNSS data. The first release of this software package allows processing only GPS data, but it is prepared to incorporate future module updates, such as an expansion to Galileo and GLONASS systems, EGNOS and differential processing.
This software implements full processing capabilities for GPS data. Nevertheless, the reading of RINEX-3.00 Galileo and GLONASS data functionality is also included, allowing performing some exercises on data analysis with real or simulated Galileo and GLONASS measurements.";
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 = '';
}
}