var fDesc=new Array();
fDesc[0] = "All measurements, GPS-protocols and own informations in a single map.
Several enterprise maps in one program without additional costs.
No limitation of the area quantity
Tile and join fields.
Multilingual: currently in english, german, spanish, french, greek, polish.
International: over 80 coordinate reference systems of 26 european countries implemented.";
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 = '';
}
}