var fDesc=new Array();
fDesc[0] = "GPS1200 PC Simulator is a tool which helps you simulate data.
The combination of the Leica GPS1200 PC Simulator and the SmartAntenna (ATX1230/ATX1230 GG) is a lightweight, innovative GNSS rover with RTK capability and the precision of Leica's high end GPS1200. Different RTK data formats are supported and the connection can be done as dial-in or via Internet (NTRIP). It is a cable free solution that allows the user to collect data directly in the field using the power of the Leica GPS1200 PC Simulator.";
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 = '';
}
}