var fDesc=new Array();
fDesc[0] = "The JTS Topology Suite is an API of spatial predicates and functions for processing geometry.
Main features:
- JTS conforms to the Simple Features Specification for SQL published by the Open Geospatial Consortium
- JTS provides a complete, consistent, robust implementation of fundamental algorithms for processing linear geometry on the 2-dimensional Cartesian plane
- JTS is fast enough for production use
- JTS is written in 100% pure JavaTM";
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 = '';
}
}