var fDesc=new Array(); fDesc[0] = "Geocoding Development Kit is a tool kit of software program, documentation and samples that are used for creating or customizing geocoding rule bases. The geocoding rule base is a collection of files that direct the geocoding engine in how to standardize address data and match that data to the related location in the reference data.

This Geocoding Development Kit can be used by those who need to:

1. modify the standardization results in order to suit different applications
2. enhance the existing matching rules to add or modify address fields for matching
3. support a new address style for different locale or country"; 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 = ''; } }