var fDesc=new Array();
fDesc[0] = "MultiFix 6 is a Fugro sixth generation differential GPS real time position computation and QC package. MultiFix 6 has been enhanced with the introduction of G2 Glonass functionality.
Key Features:
- No limit on the number of RTCM correction system inputs
- No limit on the number of positional computations
- Each computation can employ corrections from any combination of reference stations
- Statistical evaluation based upon UKOOA recommendations
- There is no limit on the number of position outputs
- Fully configurable user interface, with user selected windows and displays";
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 = '';
}
}