var fDesc=new Array(); fDesc[0] = "LayMan – Layer Management for your MapX application or MapInfo Professional environment.
LayMan has been designed as a companion for MapInfo Professional. It will assist with simple operations in most aspects of your MapInfo usage. This assistance is in the form of additional functions which have no equivalent in the current MapInfo interface or single functions that string together a number of primitives to improve productivity. The presentation of information is in a more intuitive form, with icons representing the state of the object of interest."; 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 = ''; } }