var fDesc=new Array(); fDesc[0] = "The Shape Name Utility is a simple add-in utility for Microsoft MapPoint, that allows a user to view and edit the names of shapes. Note that shape names are normal hidden from users and only visible to third party programs.
It is possible to give Microsoft MapPoint shapes their own identifying names or labels using the programming interface, but MapPoint does not make this functionality available to the end user. Instead, third party programs (eg. MPSuperShape) can use the name to identify shapes and return to them as required."; 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 = ''; } }