var fDesc=new Array();
fDesc[0] = "Autodesk MapGuide® Viewer allows you to interact with maps that were created using Autodesk MapGuide®
Author. Using Autodesk MapGuide Viewer, you can zoom in and out on a map, find specific features, select
features that meet certain criteria, display information about selected features, print the current view of the
map, and more. In addition to this HTML-based help that you are currently viewing, there is also a Portable Document Format (PDF) version of the help called MGViewerHelp.pdf, which is located on the top level of the Autodesk MapGuide® CD. With this file, you can search and print the entire help contents easily.";
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 = '';
}
}