var fDesc=new Array();
fDesc[0] = "Shape2Earth leverages freely available and easy to use Geographic Information System (GIS) software to create professional visualizations for viewing in GoogleTM Earth.
Main features:
-Convert Any Shapefile to KML - Shape2Earth reprojects your data on the fly
-Apply Thematic Symbology to your Data - Color code to display information
-Present Data in Custom Balloons - Show off your organization and business data
-Create Google Earth Overlays - Great for viewing complex maps and large datasets
-Capture Georeferenced Google Imagery - See Google Earth imagery in your GIS.";
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 = '';
}
}