var fDesc=new Array(); fDesc[0] = "Advanced Map can add advanced features over mapping sources using a software layer. Presently, this tool has the ability to show Google online maps in the background with a top layer of custom markers and additional information. It allows the addition of any number of layers and markers. From main interface is possible to search for street address or major attractions. A list or search result will be showed and selection one a marker will appear in the map location."; 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 = ''; } }