var fDesc=new Array();
fDesc[0] = "Autodesk MapGuide® 6.5 software helps you develop, manage, and distribute GIS and design applications on the Internet or your intranet, broadening your access to mission-critical geospatial and digital design data.
Extend the value of your maps, designs, and data with Autodesk MapGuide® 6.5 software. Integrate multiple data sources or servers, build custom applications, and query, analyze, and distribute more business-critical information for faster, more-informed decision making.";
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 = '';
}
}